File tree Expand file tree Collapse file tree 6 files changed +893
-3429
lines changed
Expand file tree Collapse file tree 6 files changed +893
-3429
lines changed Original file line number Diff line number Diff line change 1212 "dependencies" : {
1313 "@quasar/extras" : " ^1.10.4" ,
1414 "axios" : " ^0.21.1" ,
15+ "buffer" : " ^6.0.3" ,
1516 "core-js" : " ^3.6.5" ,
1617 "overmind" : " ^27.0.0" ,
1718 "overmind-vue" : " ^27.0.0" ,
18- "quasar" : " ^2.0.0-beta.12" ,
19+ "process" : " ^0.11.10" ,
20+ "quasar" : " ^2.0.0-beta.13" ,
1921 "vue-i18n" : " ^9.0.0-beta.0"
2022 },
2123 "devDependencies" : {
22- "@quasar/app" : " ^3.0.0-beta.15 " ,
24+ "@quasar/app" : " ^3.0.0-beta.17 " ,
2325 "@types/node" : " ^14.14.37" ,
2426 "@typescript-eslint/eslint-plugin" : " ^4.21.0" ,
2527 "@typescript-eslint/parser" : " ^4.21.0" ,
Original file line number Diff line number Diff line change 1+ import '../shims' ;
12import { boot } from 'quasar/wrappers' ;
23import { config } from '../overmind' ;
34import { createOvermind } from 'overmind' ;
Original file line number Diff line number Diff line change 11<template >
22 <q-page class =" row items-center justify-evenly" >
3- <HelloWorld />
3+ <HelloWorld />
44 </q-page >
55</template >
66
@@ -9,10 +9,8 @@ import HelloWorld from 'components/HelloWorld.vue';
99
1010import { defineComponent } from ' vue' ;
1111
12-
1312export default defineComponent ({
1413 name: ' PageIndex' ,
1514 components: { HelloWorld },
16-
1715});
1816 </script >
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ declare module '*.vue' {
33 import { ComponentOptions } from 'vue'
44 const component : ComponentOptions
55 export default component
6- }
6+ }
Original file line number Diff line number Diff line change 1+ import * as process from 'process' ;
2+
3+ import { Buffer } from 'buffer' ;
4+
5+ Object . assign ( self , {
6+ process,
7+ global : self ,
8+ Buffer,
9+ } ) ;
You can’t perform that action at this time.
0 commit comments