mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-05-03 14:31:29 +08:00
20 lines
223 B
Vue
20 lines
223 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
defineProps<{ msg: string }>()
|
|
|
|
const count = ref(0)
|
|
</script>
|
|
|
|
<template>
|
|
<h1>{{ msg }}</h1>
|
|
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
.read-the-docs {
|
|
color: #888;
|
|
}
|
|
</style>
|