示例

基础按钮

<template>
  <button>按钮</button>
  <button>{{btnText}}</button>
</template>

<script setup lang="ts">
import { ref } from 'vue'
const btnText = ref('hello world')
</script>

<style>
</style>
显示代码

禁用按钮

这里可以输入重要提示内容

<template>
  <button disabled>禁用按钮</button>
</template>
<script setup lang="ts">
</script>
显示代码
Last Updated:
Contributors: seepine