Skip to content

Commit 9c3f5be

Browse files
committed
fix(): comment emiteBeforeInitialize and migrate example app to vue3
1 parent 3754d2a commit 9c3f5be

File tree

4 files changed

+212
-22389
lines changed

4 files changed

+212
-22389
lines changed

example/src/main.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import Vue from 'vue'
2-
import App from './App.vue'
1+
import { createApp } from 'vue';
2+
import App from './App.vue';
33

4-
Vue.config.productionTip = true
5-
// Vue.config.ignoredElements = ['trix-editor']
4+
const app = createApp(App);
5+
app.mount('#app')
66

7-
new Vue({
8-
render: h => h(App)
9-
}).$mount('#app')
7+
export default app;

0 commit comments

Comments
 (0)