Browse Source

setting vetur validate off

master
pvincent 3 years ago
parent
commit
acda0886b3
  1. 7
      .vscode/settings.json
  2. 22
      README.md
  3. 2
      src/App.vue
  4. 1
      src/main.ts

7
.vscode/settings.json

@ -1,6 +1,5 @@
{
"cSpell.words": [
"VAPARA"
],
"cSpell.enabled": false
"eslint.enable": true,
"vetur.validation.template": false,
"cSpell.enabled": false,
}

22
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)

2
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'
}
}
}

1
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')
Loading…
Cancel
Save