component사용 시 v-model 하나로 props & emit의 효과를 제공할 수 있다.
How To Add v-model Support to Custom Vue.js Components | DigitalOcean
v-model="inputValue" === :value="inputValue" @input="(e) => (inputValue = e)"model: {
  event: 'customEvent',
},
  props: {
    title: { type: String },
    radioButtonsArray: {
      type: Array,
      default: () => {
        return []
      },
    },바로 아래 토글의 내용과 역설된 내용처럼 들릴 수 있지만
엘리먼트에 따라 다른 이벤트를 제공하는 것은 HTML에서 input에 해당되기 때문에 v-model안emit 구문의 input(default) 가 된다는 내용은 포인트가 다르다.
<input type="input" @input="updateInput" />methods: {
    updateInput(e) {
      console.log(e.target.value) --> 
			/**
       * input이벤트가 실행될 때(=text입력할 때)마다
       * console에 입력된 값(=UI에 보이는 text값)을 확인할 수 있다
       */
      this.$emit('input', e.target.value)
    },
  },<input type="checkbox" id="label1" @change="updateChecked" />methods: {
    updateChecked(e) {
      console.log(e.target.value)
      console.log(e.target.checked)
      /**
       * change이벤트가 실행될 때(=checkbox클릭할 때)마다
       * console에 입력된 값을 확인해보면
       * e.target.value값은 "on"
       * e.target.checked 값은 true/false 가 번갈아가며 찍힌다
       */
      this.$emit('input', e.target.value)
    },
  },<input type="select" @change="changeValue" />