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를 확인해보세요.
백엔드 코드는 보기 흉하며 리팩토링될 예정입니다.
MIT