forked from opentiny/tiny-vue
25 lines
387 B
Vue
25 lines
387 B
Vue
<template>
|
|
<div class="mobile-label-demo">
|
|
<h2>是否整行</h2>
|
|
<tiny-label :wholeline="true" label="整行展示"></tiny-label>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Label } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyLabel: Label
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.mobile-label-demo {
|
|
height: 100%;
|
|
background: #f4f4f4;
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|