如何从VueJS中的组件获取数据

时间:2017-03-09 00:58:40

标签: vuejs2 components

我有以下组件:

组件

<template>
<div>
  <label class="typo__label">Single selecter</label>
  <multiselect v-model="value" :options="options" :searchable="false" :close-on-select="false" :show-labels="false" placeholder="Pick a value"></multiselect>
</div>
</template>

<script>
import Multiselect from 'vue-multiselect'

export default {
  components: {
    Multiselect
  },
  data () {
    return {
      value: '',
      options: ['Select option', 'options', 'selected', 'mulitple', 'label', 'searchable', 'clearOnSelect', 'hideSelected', 'maxHeight', 'allowEmpty', 'showLabels', 'onChange', 'touched']
    }
  }
}
</script>

我在我的页面中使用它是这样的:

<p id="app-two">
  <dropdown></dropdown>
  @{{ value }}
  @{{ message }}
</p>

<script>
    new Vue({
    el: '#app',
    data: {
        message: 'Test message'
    }
});
</script>

当我运行该页面时,@ {{message}}会显示“测试消息”,但@ {{value}}为空。 我可以看到下拉组件的值在VueJS Dev Tools中更新,但它没有在页面上显示。如何访问vue元素中的组件数据?像@ {{dropdown.value}}

这样的东西

2 个答案:

答案 0 :(得分:3)

<template>
    <div>
      <label class="typo__label">Single selecter</label>
      <multiselect v-model="internalValue" :options="options" :searchable="false" :close-on-select="false" :show-labels="false" placeholder="Pick a value">  </multiselect>
    </div>
</template>

<script>
    import Multiselect from 'vue-multiselect'

    export default {
      components: {
        Multiselect
      },
      props: ['value'],
      data () {
        return {
          internalValue: this.value,
          options: ['Select option', 'options', 'selected', 'mulitple', 'label', 'searchable', 'clearOnSelect', 'hideSelected', 'maxHeight', 'allowEmpty', 'showLabels', 'onChange', 'touched']
        }
      },
      watch:{
         internalValue(v){
             this.$emit('input', v);
         }
      }
    }
</script>

并在您的信息页中

<p id="app-two">
  <dropdown v-model="selectedValue"></dropdown>
  @{{ selectedValue}}
  @{{ message }}
</p>

<script>
    new Vue({
    el: '#app',
    data: {
        selectedValue: null
        message: 'Test message'
    }
});
</script>

Here is an example,不是使用多选,而是实现对v-model的支持的自定义组件。

答案 1 :(得分:0)

这对我来说是最好,最干净的方式。

父项

<template>
    <ChildComponent v-model="selected" />
</template>

子组件

<template>
    <Multiselect
        :value="value"
        :options="options"
        :show-labels="false"
        :multiple="true"
        :close-on-select="false"
        :clear-on-select="false"
        :searchable="false"
        :limit="1"
        :limit-text="(count) => $t('app.multiselect.and_n_more', { n: count })"
        :placeholder="$t('app.select')"
        label="name"
        track-by="name"
        @input="$emit('input', $event)"
    />
</template>

<script>    
export default {
    props: {
        value: {
            type: Array,
            default: () => []
        }
    },
    data() {
        return {
            options: [{id:1, name:'John'}, {id:2, name:'Tom'}]
        }
    }
}
</script>