Nuxt.jsでアプリを作成しております。
DOMのマウント後に、inputタグをdivタグの中に挿入し、
そのinput タグにおいて、v-on:changeのようなイベントで
チェックが起こった際、イベントを発生させるというような実装を考えています。
inputタグの追加やv-on:changeでイベント指定の追加などはできたのですが、
肝心のイベントが呼びだされません。
コードは下記のように作っています。
Vue.js
1<template> 2 <div class="addHere">ここに新しいinputタグを追加します。</div> 3</temaplate> 4<script lang="ts"> 5import { Component, Vue } from 'nuxt-property-decorator' 6 7@Component({ components: {} }) 8export default class extends Vue { 9 mounted() { 10 this.$nextTick(() => { 11 // inputエレメントの作成 12 let newInput: any = document.createElement('input') 13 newInput.type = 'checkbox' 14 newInput.id = 'new_checkBox' 15 newInput.name = 'new_checkBox' 16 newInput.setAttribute('v-on:change', 'myFunc()') 17 18 // 既にあるdivタグの中に、作成したinputタグを挿入 19 const parentDiv = document.getElementsByClassName('addHere') 20 parentDiv.appendChild(newInput) 21 } 22 } 23 myFunc() { 24 console.log('選択しました!') 25 } 26} 27 28</script>
console.logで確認しても、問題なくタグは入っているようでした。
どのようにすれば、v-on:changeイベントでmyFunc()を呼び出すことができるようでしょうか?
詳しい方、ご教示いただけますと幸いです。
あなたの回答
tips
プレビュー