Skip to content

Commit 9b7cdb9

Browse files
committed
feat: support Vue 3.0.0-alpha.4
1 parent 156e62c commit 9b7cdb9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

generator/template/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { createApp } from 'vue'
22
import App from './App.vue'
33

4-
createApp().mount(App, '#app')
4+
createApp(App).mount('#app')

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"vue-loader": "^16.0.0-alpha.1"
1717
},
1818
"peerDependencies": {
19-
"@vue/compiler-sfc": "^3.0.0-alpha.1",
20-
"vue": "^3.0.0-alpha.1"
19+
"@vue/compiler-sfc": "^3.0.0-alpha.4",
20+
"vue": "^3.0.0-alpha.4"
2121
},
2222
"devDependencies": {
2323
"jest": "^24.9.0",

0 commit comments

Comments
 (0)