Kintoneがわファイルアップロード

This commit is contained in:
2023-10-20 12:28:07 +09:00
parent 178cf33949
commit 25f05ab018
19 changed files with 20309 additions and 14 deletions

View File

@@ -0,0 +1,37 @@
<template>
<q-input :label="displayName" :placeholder="placeholder" v-model="inputValue" autogrow />
</template>
<script lang="ts">
import { defineComponent,ref,watchEffect } from 'vue';
export default defineComponent({
name: 'MuiltInputText',
props: {
displayName:{
type: String,
default: '',
},
placeholder: {
type: String,
default: '',
},
modelValue: {
type: String,
default: '',
},
},
setup(props, { emit }) {
const inputValue = ref(props.modelValue);
watchEffect(() => {
emit('update:modelValue', inputValue.value);
});
return {
inputValue,
};
},
});
</script>