soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
198 Bytes
import { createApp } from 'vue'
import { setupPlugins } from '@front/plugins'
import DevIframe from './DevIframe.vue'
const app = createApp(DevIframe)
setupPlugins(app)
app.mount('#iframe-target')