pvincent
4 years ago
10 changed files with 82 additions and 66 deletions
-
32.vscode/settings.json
-
6README.md
-
6TODO.md
-
2src/App.vue
-
0src/assets/index.css
-
29src/components/Basket.vue
-
8src/main.ts
-
8src/shims-vue.d.ts
-
7src/stores/global.ts
-
50vite.config.ts
@ -1,16 +1,20 @@ |
|||||
{ |
{ |
||||
"eslint.enable": true, |
|
||||
"vetur.validation.template": false, |
|
||||
"vetur.validation.templateProps": true, |
|
||||
"vetur.validation.interpolation": true, |
|
||||
"editor.formatOnSave": true, |
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode", |
|
||||
"cSpell.words": [ |
|
||||
"Astrologia", |
|
||||
"Kamal", |
|
||||
"Kamalātmikā", |
|
||||
"Yantra", |
|
||||
"protovue", |
|
||||
"tmik" |
|
||||
] |
|
||||
|
"eslint.enable": true, |
||||
|
"vetur.validation.template": false, |
||||
|
"vetur.validation.templateProps": true, |
||||
|
"vetur.validation.interpolation": true, |
||||
|
"editor.formatOnSave": true, |
||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode", |
||||
|
"cSpell.enableFiletypes": ["markdown", "!typescript", "!json"], |
||||
|
"cSpell.words": [ |
||||
|
"Astrologia", |
||||
|
"Codium", |
||||
|
"Dolibarr's", |
||||
|
"Kamal", |
||||
|
"Kamalātmikā", |
||||
|
"Yantra", |
||||
|
"protovue", |
||||
|
"tmik", |
||||
|
"windi" |
||||
|
] |
||||
} |
} |
@ -1,10 +1,10 @@ |
|||||
import { createApp } from 'vue' |
import { createApp } from 'vue' |
||||
import App from './App.vue' |
|
||||
import './index.css' |
|
||||
import 'windi.css' |
import 'windi.css' |
||||
|
|
||||
// define title and version from package.json
|
|
||||
// eslint-disable-next-line no-undef
|
|
||||
|
import App from '@/App.vue' |
||||
|
import '@/assets/index.css' |
||||
|
|
||||
|
declare const APP_TITLE: string |
||||
document.title = APP_TITLE |
document.title = APP_TITLE |
||||
|
|
||||
createApp(App).mount('#app') |
createApp(App).mount('#app') |
@ -0,0 +1,7 @@ |
|||||
|
import { reactive } from "vue" |
||||
|
|
||||
|
export default { |
||||
|
state: reactive({ |
||||
|
count: 404 |
||||
|
}) |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue