Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aletrn
/
lisa-on-cuda
like
1
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
15d84c8
lisa-on-cuda
/
static
/
src
/
main.ts
alessandro trinca tornidor
feat: add static files (vue3/tailwindcss frontend)
15d84c8
about 1 year ago
raw
Copy download link
history
blame
Safe
127 Bytes
import
{ createApp }
from
'vue'
import
'./style.css'
import
App
from
'./App.vue'
const
app =
createApp
(
App
)
app.
mount
(
'#app'
)