Created
December 29, 2021 13:50
-
-
Save stfsy/b92f93c1f3b9fed5637d74f71bc8e4ae to your computer and use it in GitHub Desktop.
A simple opinionated entrypoint for Vue.js with TailwindCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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