UNPKG
template-maker
Version:
latest (1.0.1)
1.0.1
1.0.0
A CLI to generate project templates with alot of options!!
template-maker
/
templates
/
vue
/
vue-temp
/
src
/
main.js
5 lines
(3 loc)
•
93 B
JavaScript
View Raw
1
2
3
4
5
import
{ createApp }
from
"vue"
;
import
App
from
"./App.vue"
;
createApp
(
App
).
mount
(
"#app"
);