Skip to content

Commit

Permalink
add entrypoint examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Haehnchen committed Feb 25, 2024
1 parent ab4fa36 commit 1414780
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import App from './App.vue'
const app = createApp(App)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Vue from 'vue'
import App from './App.vue'

const app = new Vue({
render: (createElement) => createElement(App)
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import App from './App.vue';
new App().$mount(el);

0 comments on commit 1414780

Please sign in to comment.