From 61bca99e0e9e897538871594d4c3d8f83578c9cf Mon Sep 17 00:00:00 2001 From: kanno <812137533@qq.com> Date: Wed, 26 Jan 2022 21:27:55 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=9B=B4=E6=96=B0=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example_vue/README.md | 24 ++++++------------------ example_vue/jsconfig.json | 19 ------------------- example_vue/vue.config.js | 3 --- 3 files changed, 6 insertions(+), 40 deletions(-) delete mode 100644 example_vue/jsconfig.json delete mode 100644 example_vue/vue.config.js diff --git a/example_vue/README.md b/example_vue/README.md index 7718f283..bab7cfbd 100644 --- a/example_vue/README.md +++ b/example_vue/README.md @@ -1,24 +1,12 @@ # example_vue -## Project setup -``` -yarn install -``` +## Usage -### Compiles and hot-reloads for development -``` -yarn serve -``` +```bash -### Compiles and minifies for production -``` -yarn build -``` -### Lints and fixes files -``` -yarn lint -``` +$ yarn install -### Customize configuration -See [Configuration Reference](https://cli.vuejs.org/config/). +$ yarn serve + +``` diff --git a/example_vue/jsconfig.json b/example_vue/jsconfig.json deleted file mode 100644 index 31b317e4..00000000 --- a/example_vue/jsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": ".", - "outDir": "/", - "allowJs": true, - "noImplicitThis": true, - "importHelpers": true, - "esModuleInterop": true, - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "node", - "types": ["vite/client"], - "paths": { - "@/*":["./*"] - } - }, - "include": ["src/**/*"], - "exclude": ["node_modules"] -} \ No newline at end of file diff --git a/example_vue/vue.config.js b/example_vue/vue.config.js deleted file mode 100644 index 0d4e2951..00000000 --- a/example_vue/vue.config.js +++ /dev/null @@ -1,3 +0,0 @@ -const path = require('path') - -module.exports = {}