forked from opentiny/tiny-vue
23 lines
343 B
Vue
23 lines
343 B
Vue
<template>
|
|
<div>
|
|
<tiny-button type="text"> 文本按钮 </tiny-button>
|
|
<tiny-button type="text" text="text属性"></tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
button {
|
|
margin: 0 16px 16px 0;
|
|
}
|
|
</style>
|