21 lines
538 B
Vue
21 lines
538 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 lang="jsx">
|
|
import { Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
}
|
|
}
|
|
</script>
|