Created
May 27, 2024 20:39
-
-
Save czbaker/05191757de3cee73e7705544ebf75d95 to your computer and use it in GitHub Desktop.
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
| <template> | |
| Main Layout | |
| <RouterView /> | |
| </template> | |
| <script setup> | |
| import { RouterView } from 'vue-router' | |
| </script> | |
| <style> | |
| html { | |
| @apply bg-gray-800; | |
| } | |
| </style> |
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
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; |
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 { createPinia } from 'pinia' | |
| import './assets/main.css' | |
| import App from './App.vue' | |
| import router from './router' | |
| const app = createApp(App) | |
| app.use(createPinia()) | |
| app.use(router) | |
| app.mount('#app') |
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
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./src/index.html", | |
| "./src/**/*.{vue,js}" | |
| ], | |
| theme: { | |
| extend: {}, | |
| }, | |
| plugins: [], | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment