Skip to content

Instantly share code, notes, and snippets.

@stfsy
Created December 29, 2021 13:50
Show Gist options
  • Select an option

  • Save stfsy/b92f93c1f3b9fed5637d74f71bc8e4ae to your computer and use it in GitHub Desktop.

Select an option

Save stfsy/b92f93c1f3b9fed5637d74f71bc8e4ae to your computer and use it in GitHub Desktop.
A simple opinionated entrypoint for Vue.js with TailwindCSS
import { createApp } from 'vue'
import App from './App.vue'
import './registerServiceWorker'
import router from './router'
import './styles.css'
createApp(App).use(router).mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment