ts vue questionnaire
1.0.0
Система анкетного опроса, подходящая для школ и подразделений, характеризуется тем, что участников необходимо заранее представить и анкетный опрос может проводиться в пределах контролируемого диапазона.
├── 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
См. Справочник по конфигурации.
Файлы шаблонов пакетного импорта пользователей см. в /Import_Template.xls
Для локальной среды измените VUE_APP_BASE_API
в файле .env.development
в корневом каталоге на адрес внутреннего развертывания для локальной отладки.
Для производственной среды измените VUE_APP_BASE_API
в файле .env.production
в корневом каталоге, указав адрес онлайн-серверного развертывания.
Проверьте vue-questionnaire-api.
Серверный код непригляден и его планируется рефакторить.
Массачусетский технологический институт