forked from opentiny/tiny-vue
39 lines
811 B
Vue
39 lines
811 B
Vue
<template>
|
||
<div class="content">
|
||
显示模式:
|
||
<tiny-radio-group v-model="mode">
|
||
<tiny-radio-button label="number"></tiny-radio-button>
|
||
<tiny-radio-button label="simple"></tiny-radio-button>
|
||
<tiny-radio-button label="complete"></tiny-radio-button>
|
||
<tiny-radio-button label="fixed"></tiny-radio-button>
|
||
</tiny-radio-group>
|
||
<tiny-pager :mode="mode" :total="100"></tiny-pager>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Pager, RadioButton, RadioGroup } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinyPager: Pager,
|
||
TinyRadioButton: RadioButton,
|
||
TinyRadioGroup: RadioGroup
|
||
},
|
||
data() {
|
||
return {
|
||
mode: 'number'
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.content {
|
||
margin-bottom: 20px;
|
||
}
|
||
.tiny-radio-group {
|
||
margin-bottom: 10px;
|
||
}
|
||
</style>
|