vue-riu-tirmdi
v1.1.0
Published
A Vuetify N
Readme
Vue Dashboard Layout Component
A reusable dashboard layout component for Vue 3 + Vuetify.
Installation
npm install vue-dashboard-layout-componentUsage
In your Vue application (must have Vuetify and Vue Router installed):
import { createApp } from 'vue'
import App from './App.vue'
import { AllRole } from 'vue-dashboard-layout-component'
const app = createApp(App)
app.component('AllRole', AllRole)
app.mount('#app')Or inside another component:
<script setup>
import { AllRole } from 'vue-dashboard-layout-component'
</script>
<template>
<AllRole />
</template>