forked from opentiny/tiny-vue
25 lines
369 B
Vue
25 lines
369 B
Vue
<template>
|
|
<div class="mobile-label-demo">
|
|
<h2>基础文本</h2>
|
|
<tiny-label 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>
|