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
を参照してください。
ローカル環境の場合は、ルート ディレクトリにある.env.development
ファイル内のVUE_APP_BASE_API
、ローカル デバッグ用のバックエンド デプロイメント アドレスに変更してください。
運用環境の場合は、ルート ディレクトリの.env.production
ファイル内のVUE_APP_BASE_API
オンライン バックエンド デプロイメント アドレスに変更してください。
vue-questionnaire-api を確認してください。
バックエンド コードは見苦しいため、リファクタリングされる予定です。
マサチューセッツ工科大学