13 lines
380 B
Vue
13 lines
380 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<!-- ----------------------------------------------------------------------------- -->
|
|
<!-- Props -->
|
|
<!-- ----------------------------------------------------------------------------- -->
|
|
<v-card elevation="0"
|
|
title="This is a title"
|
|
subtitle="This is a subtitle"
|
|
text="This is content"
|
|
></v-card>
|
|
</template>
|