Appearance
这是基础按钮组件,支持不同类型。以下示例展示如何使用带 yf- 前缀的 input 组件:
yf-
<template> <yf-input v-model="text" placeholder="请输入内容" /> </template> <script setup lang="ts"> import { ref } from "vue"; const text = ref(""); </script>