tiny-vue/examples/sites/demos/mobile-first/app/button/link.vue

16 lines
232 B
Vue

<template>
<div>
<tiny-button type="text" href="/"> 超链接按钮 </tiny-button>
</div>
</template>
<script>
import { Button } from '@opentiny/vue'
export default {
components: {
TinyButton: Button
}
}
</script>