Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Yoobit
/
g2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
g2
/
src
/
main.js
Yoobit
t3
f50aa23
about 1 month 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'
)