1
0
forked from test/crm
jcrm/frontend/src/pages/Deals.vue

10 lines
151 B
Vue

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