Skip to content

Commit 171b7ee

Browse files
author
kajan
committed
mount Vue component to DOM
1 parent 8e38512 commit 171b7ee

File tree

1 file changed

+7
-0
lines changed
  • AspNetCoreVueMpa.Web/ClientApp/views/home/index

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import Vue from 'vue'
2+
import HelloWorld from "./HelloWorld.vue";
3+
4+
const app = new Vue({
5+
el: '#app',
6+
render: h => h(HelloWorld)
7+
})

0 commit comments

Comments
 (0)