Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sodagraph
/
YouTube_Transcript_Extraction
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7be6cd6
YouTube_Transcript_Extraction
/
frontend
/
src
/
main.js
Sodagraph
스페이스 이동
eda02a7
2 months ago
raw
Copy download link
history
blame
Safe
168 Bytes
import
{ createApp }
from
'vue'
import
App
from
'./App.vue'
import
api
from
'./api'
const
app =
createApp
(
App
)
app.
config
.
globalProperties
.
$api
= api
app.
mount
(
'#app'
)