Skip to content

Instantly share code, notes, and snippets.

@kohki-shikata
Created September 21, 2024 03:51
Show Gist options
  • Save kohki-shikata/27524ed7ae2dbdc2ae033d1e1e81b4d0 to your computer and use it in GitHub Desktop.
Save kohki-shikata/27524ed7ae2dbdc2ae033d1e1e81b4d0 to your computer and use it in GitHub Desktop.
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router';
const app = createApp(App)
app.use(router)
app.mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment