tiny-vue/examples/docs/resources/pc/demo/button/text.vue

19 lines
303 B
Vue

<template>
<div>
<tiny-button type="text">
文本按钮
</tiny-button>
<tiny-button type="text" text="text属性"></tiny-button>
</div>
</template>
<script lang="jsx">
import { Button } from '@opentiny/vue'
export default {
components: {
TinyButton: Button
}
}
</script>