UNPKG

vue3-runtime-template

Version:

Create Vue 3 components by compiling templates on the fly

10 lines (7 loc) 188 B
import Vue from "vue"; import App from "./App.vue"; import testPlugin from "./test.plugin.js"; //testing mixins Vue.use(testPlugin); new Vue({ render: h => h(App) }).$mount("#app");