Skip to content

b-form-select properties value-field and text-field do not work with certain data. #5245

@tomomo

Description

@tomomo

Describe the bug

b-form-select properties value-field and text-field do not work with certain data.
It will be null.

Steps to reproduce the bug

CodeSandbox

<template>
  <div>
    value: {{ value }}
    <b-form-select
      v-model="value"
      label-field="value"
      options-field="items"
      value-field="id"
      text-field="name"
      :options="[{
      value: 'fruits',
      items:[
        { id: 1, name: 'apple' },
        { id: 2, name: 'orange' },
      ]
      }]" />
  </div>
</template>

<script>
  export default {
    data() {
      return {
        value: null
      }
    },
  }
</script>

Versions

Libraries:

  • BootstrapVue: 2.12.0
  • Bootstrap: 4.4.1
  • Vue: 2.6.11

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions