33 lines
599 B
Vue
33 lines
599 B
Vue
<template>
|
|
<div>
|
|
<tiny-button loading>
|
|
加载中
|
|
</tiny-button>
|
|
<tiny-button type="primary" loading>
|
|
加载中
|
|
</tiny-button>
|
|
<tiny-button type="success" loading>
|
|
加载中
|
|
</tiny-button>
|
|
<tiny-button type="info" loading>
|
|
加载中
|
|
</tiny-button>
|
|
<tiny-button type="warning" loading>
|
|
加载中
|
|
</tiny-button>
|
|
<tiny-button type="danger" loading>
|
|
加载中
|
|
</tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
}
|
|
}
|
|
</script>
|