Vue3 and Laravel + Inertia | Cookbook
Inhaltsverzeichnis
Allgemeines
Vue and CSS
Styling with CSS Variables
<script setup>
const theme = {
"menu": {
"background": 'black',
"item": {
"background": "green"
},
"subitem": {
"background": "green"
}
}
}
</script><style scoped>
.menu {
background-color: v-bind('theme.menu.background');
}Using PrimeVue
Installation
❯ pnpm add primevue @primevue/themes ❯ pnpm add primevue @primevue/icons

Leave a Reply