OfficeApp/components/newArchives/productionInputs.vue
2023-07-28 16:09:04 +08:00

22 lines
251 B
Vue

<template>
<view class="">
<input type="text" v-model="text">
</view>
</template>
<script>
export default {
data() {
return {
text:''
}
},
methods: {
},
}
</script>
<style lang="scss">
</style>