tiny-vue/examples/sites/demos/mobile/app/label/required.vue

25 lines
379 B
Vue

<template>
<div class="mobile-label-demo">
<h2>是否带*</h2>
<tiny-label label="123456789" is-required></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>