11 lines
100 B
Vue
11 lines
100 B
Vue
<template>
|
|
{{ test }}
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
defineProps({
|
|
test: String,
|
|
})
|
|
|
|
</script> |