10 lines
175 B
Vue
10 lines
175 B
Vue
<script setup lang="ts">
|
|
// const props = defineProps({
|
|
// title: String,
|
|
// });
|
|
</script>
|
|
|
|
<template>
|
|
<v-text-field color="primary"><slot /></v-text-field>
|
|
</template>
|