ts vue questionnaire
1.0.0
The questionnaire survey system suitable for schools and units is characterized by the fact that participants need to be introduced in advance and the questionnaire survey can be conducted within a controllable range.
├── public # public static assets (directly copied)
│ │── favicon.ico # favicon
│ └── index.html # index.html template
├── src # main source code
│ ├── api # api service
│ ├── assets # module assets like fonts, images (processed by webpack)
│ ├── components # global components
│ ├── config # config of enum etc.
│ ├── filters # global filter
│ ├── plugins # third party packages
│ ├── router # router
│ ├── store # store
│ ├── types # namespace declaration
│ ├── utils # global utils
│ ├── views # views
│ ├── App.vue # main app component
│ ├── global.d.ts # third types declaration
│ ├── main.ts # app entry file
│ ├── shim-request-proper-
ty.d.ts # bind $axios on Vue property
│ ├── shims-tsx.d.ts # type definition shims
│ └── shims-vue.d.ts # type definition shims
├── tests/ # tests
├── .browserslistrc # browserslist config file (to support Autoprefixer)
├── .editorconfig # editor code format consistency config
├── .env.xxx # env variable configuration
├── .eslintrc.js # eslint config
├── babel.config.js # babel config
├── jest.config.js # jest unit test config
├── package.json # package.json
├── tsconfig.json # typescript config
└── vue.config.js # vue-cli config
yarn install
yarn run serve
yarn run build
See Configuration Reference.
For user batch import template files, see /Import_Template.xls
For the local environment, please modify VUE_APP_BASE_API
in the .env.development
file in the root directory to the backend deployment address for local debugging.
For the production environment, please modify VUE_APP_BASE_API
in the .env.production
file in the root directory to the online backend deployment address.
Check out vue-questionnaire-api.
The back-end code is unsightly and is planned to be refactored.
MIT