forked from opentiny/tiny-vue
23 lines
323 B
Vue
23 lines
323 B
Vue
<template>
|
|
<div>
|
|
<tiny-button>默认按钮</tiny-button>
|
|
<tiny-button autofocus> 默认聚焦 </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>
|