create dashboard layout

This commit is contained in:
Geriano
2022-07-16 04:29:30 +07:00
parent 2ca55419f7
commit cff8ab1b72
11 changed files with 276 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
<script setup>
const { type, name } = defineProps({
type: {
type: String,
default: 'fa',
},
name: {
type: String,
default: 'circle',
},
})
</script>
<template>
<i :class="`${type} fa-${name}`"></i>
</template>