如何在不评估变量的情况下将变量传递给自定义组件?

时间:2018-11-12 11:42:59

标签: vue.js vuejs2

我有一个自定义组件:

<template>
  <div class="form-group">
    <label for="desc">{{label}}</label>
    <input id="desc" type="text" class="form-control input-sm"
           :name="label"
           :readonly="readonly"
           v-bind:value="value"
           v-on:input="$emit('input', $event.target.value)"
           v-validate="validate"
    />
    <div class="error-feedback">{{ errors.first(label) }}</div>
    {{readonly}}<!-- debugging -->
  </div>
</template>

<script>
export default {
  name: 'FormGroup',
  props: {
    label: String,
    value: String,
    readonly: String,
    validate: String
  },
  data: function() {
    return {
    }
  }
}
</script>

<style scoped>
  .error-feedback {
    color: #cc3333;
  }
</style>

当我打电话给它时:

  <FormGroup label="Channel" readonly="device_config.enabled" validate="required" v-model="device_config.some_setting" />

自定义组件将'readonly'属性作为文字字符串"device_config.some_setting"而不是device_config.some_setting中包含的值来接收。

如何让我的自定义组件使字段变为只读字段,取决于调用组件模型中传入的值?

1 个答案:

答案 0 :(得分:2)

使用v-bind:readonly="setting"setting应该是您的父组件中定义的属性:

    <FormGroup label="Channel" :readonly="setting" validate="required" v-model="device_config.some_setting" />