Foo 组件示例
第一个示例:
基本使用
测试使用 Element Plus 组件
<template>
<button style="background-color: aqua">123</button>
</template>
第二个示例:
hare-ui Foo
msg is: hello custom component
基本使用
测试使用自定义组件库组件
<template><h-foo :msg="msg"></h-foo>123</template>
<script lang="ts" setup>
import { ref } from 'vue'
const msg = ref('hello custom component')
</script>