From acda0886b38b88eaac70c944338e76c9c6557bb1 Mon Sep 17 00:00:00 2001 From: pvincent Date: Mon, 1 Mar 2021 10:08:25 +0400 Subject: [PATCH] setting vetur validate off --- .vscode/settings.json | 7 +++---- README.md | 22 ++++++++++++++-------- src/App.vue | 2 +- src/main.ts | 1 + 4 files changed, 19 insertions(+), 13 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 78ca314..c16b0b3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,5 @@ { - "cSpell.words": [ - "VAPARA" - ], - "cSpell.enabled": false + "eslint.enable": true, + "vetur.validation.template": false, + "cSpell.enabled": false, } \ No newline at end of file diff --git a/README.md b/README.md index 2dedeb2..0ca832e 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,25 @@ Based on Vue3, it relies on Dolibarr's API calls HOW TO RUN ---------- -* npm install --also=dev -* npm run dev +``` +npm install --also=dev +npm run dev +``` HOW TO DEPLOY ------------- -* npm run linter -* npm build - * npm preview +```bash +npm run linter +npm build + +# to preview production release, optional +npm preview +``` MORE INFORMATION ---------------- -* todo [TODO](TODO.md) -* documentation -> [doc](doc/INDEX.md) -* license +* [TODO](TODO.md) +* [documentation](doc/INDEX.md) +* [license](./LICENSE) diff --git a/src/App.vue b/src/App.vue index 202507a..ca7b880 100644 --- a/src/App.vue +++ b/src/App.vue @@ -39,7 +39,7 @@ export default { version: APP_VERSION, repository: APP_REPOSITORY, license: APP_LICENSE, - subtitle: 'boutique en ligne G1' + subtitle: 'La Boutik Ǧ1' } } } diff --git a/src/main.ts b/src/main.ts index d14c280..59243bc 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,6 +4,7 @@ import './index.css' import 'windi.css' // define title and version from package.json +// eslint-disable-next-line no-undef document.title = APP_TITLE createApp(App).mount('#app')