22 lines
269 B
Vue
22 lines
269 B
Vue
<template>
|
|
<div>
|
|
<u-picker v-model="show" mode="time"></u-picker>
|
|
<u-button @click="show = true">打开</u-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: false,
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |