Skip to content

Commit 3a7195d

Browse files
committed
fix main
1 parent f9bd5bc commit 3a7195d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/demo/src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import Vue from "vue";
33
import App from "./app.vue";
44

5-
Vue.config.productionTip = false;
65

76
new Vue({
7+
el: '#app',
88
render: h => h(App)
9-
}).$mount('#app');
9+
});

examples/hello-world/src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import Vue from "vue";
33
import App from "./app.vue";
44

5-
Vue.config.productionTip = false;
65

76
new Vue({
7+
el: '#app',
88
render: h => h(App)
9-
}).$mount('#app');
9+
});

0 commit comments

Comments
 (0)