10 lines
135 B
Vue
10 lines
135 B
Vue
|
<template>
|
||
|
<p>ReadySet.vue</p>
|
||
|
<p>{{ text }}</p>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
text: string,
|
||
|
}>()
|
||
|
</script>
|