19 lines
322 B
Vue
19 lines
322 B
Vue
<template>
|
|
<div>
|
|
<tiny-button>默认按钮</tiny-button>
|
|
<tiny-button autofocus>默认聚焦</tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Button as TinyButton } from '@opentiny/vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tiny-button {
|
|
margin-bottom: 10px;
|
|
margin-left: 0;
|
|
margin-right: 24px;
|
|
}
|
|
</style>
|