UNPKG
hg-sid
Version:
latest (0.1.3)
0.1.3
a front-end simple framework with mvc
github.com/hamger/sid
hamger/sid
hg-sid
/
demo
/
todolist
/
index.js
9 lines
(8 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
sid
from
'@'
import
App
from
'./components/App'
import
'./index.scss'
import
sRouter
from
'#'
import
router
from
'./router.js'
sid.
use
(sRouter, router)
// 挂载dom元素
sid.$mount(
document
.
getElementById
(
'app'
),
App
)