Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aletrn
/
samgis
like
4
Running
App
Files
Files
Community
d0e8490
samgis
/
static
/
src
/
main.ts
aletrn
[feat] add working static frontend
aa983ad
about 1 year ago
raw
Copy download link
history
blame
Safe
112 Bytes
import
{ createApp }
from
"vue"
;
import
App
from
"./App.vue"
;
const
app =
createApp
(
App
);
app.
mount
(
"#root"
);