likephp/support-bot
0
1---2title: Support Bot3emoji: 🐢4colorFrom: purple5colorTo: indigo6sdk: static7pinned: false8app_build_command: npm run build9app_file: dist/index.html10license: mit11short_description: 一個簡單的客服系統12---13 14# vue15 16This template should help get you started developing with Vue 3 in Vite.17 18## Recommended IDE Setup19 20[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).21 22## Type Support for `.vue` Imports in TS23 24TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.25 26## Customize configuration27 28See [Vite Configuration Reference](https://vite.dev/config/).29 30## Project Setup31 32```sh33npm install34```35 36### Compile and Hot-Reload for Development37 38```sh39npm run dev40```41 42### Type-Check, Compile and Minify for Production43 44```sh45npm run build46```47 48### Lint with [ESLint](https://eslint.org/)49 50```sh51npm run lint52```53 