25 lines
333 B
Vue
25 lines
333 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>
|