前提・実現したいこと
ダイアログ内にフォームを作るコンポーネントで、初回表示時(SSR設定でも<no-ssr>をつけた場合でも)
inputsを$refs経由で取得することができません(オブジェクトに含まれない)。
2回目以降のダイアログ表示では取得できるようになります。(ダイアログを閉じたタイミングでrefsとして取得できるようになる)
子コンポーネントのバリデーション処理を実行して、戻りを取得したいので$emitは使用できません。
emitの引数を参照渡しで親側で取得できれば問題ないかとも思いますが、なにか解決策はありますでしょうか
該当のソースコード
親コンポーネント
vue
1 <base-dialog-with-close-button 2 ref="dialog" 3 max-width="900px" 4 :title="title" 5 > 6 <auto-create-inputs 7 :validate="validate" 8 @validate="v => this.valid = v" 9 v-model="data" 10 :inputs="inputs" 11 ref="inputs" // ← こいつ 12 /> 13 <template v-slot:action> 14 <v-row dense justify="center"> 15 <save-button 16 :form_data="data" 17 url="/api/company" 18 :valid="valid" 19 @validate="$refs.inputs.validate()" 20 @saved="v => saved(v)" 21 >保存</save-button> 22 <button-grey class="ml-2" @click="hide()">キャンセル</button-grey> 23 </v-row> 24 </template> 25 </base-dialog-with-close-button>
子コンポーネント
vue
1<template> 2 <v-form ref="form" v-model="valid" lazy-validation> 3 <v-flex> 4 <v-row dense > 5 <v-col 6 v-for="(input,key) in inputs" 7 :cols="input.col?input.col:'12'" 8 :key="key" 9 class="form_col" 10 > 11 <v-row dense justify="start"> 12 <v-col> 13 <v-subheader class="form_label"> 14 <span class="label"> 15 {{ input.label }} 16 </span> 17 <span v-if="input.required" class="required_label" style="text-align: end"> 18 ※必須 19 </span> 20 </v-subheader> 21 </v-col> 22 <v-col class="input_col"> 23 <component 24 :value="getValue(input.value,data)" 25 @input="setValue" 26 :is="getInputComponent(input)" 27 :items="input.items" 28 :prepend-inner-icon="input.prepend_inner_icon" 29 :rules="getRules(input)" 30 :disabled="input.disabled" 31 :clearable="input.clearable" 32 :hint="input.hint" 33 :persistent-hint="input.persistent_hint" 34 :url="input.url" 35 :type="input.val_type" 36 @address="v => setAddr(v,input.addr_col)" 37 /> 38 <p class="outer_suffix" v-if="input.outer_suffix"> 39 {{ input.outer_suffix }} 40 </p> 41 </v-col> 42 </v-row> 43 </v-col> 44 </v-row> 45 </v-flex> 46 </v-form> 47</template>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。