Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
olivermao
/
test
like
0
Running
App
Files
Files
Community
main
test
/
src
/
main.js
Yoobit
feat(docs): 更新 README 文档内容与使用说明
d17ebe3
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
172 Bytes
import
{ createApp }
from
'vue'
import
'./main.css'
import
App
from
'./App.vue'
import
router
from
'./router'
const
app =
createApp
(
App
)
app.
use
(router)
app.
mount
(
'#app'
)