crm/frontend/src/pages/Dashboard.vue
2023-07-23 16:32:08 +05:30

10 lines
155 B
Vue

<template>
<div class="px-5 py-4 font-semibold text-xl">
<h1>{{ title }}</h1>
</div>
</template>
<script setup>
let title = 'Dashboard'
</script>