Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 713 Bytes

setValue.md

File metadata and controls

37 lines (25 loc) · 713 Bytes

setValue(value)

Sets value of a text-control input or select element and updates v-model bound data.

  • Arguments:

    • {any} value
  • Example:

import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'

const wrapper = mount(Foo)

const input = wrapper.find('input[type="text"]')
input.setValue('some value')

const select = wrapper.find('select')
select.setValue('option value')
  • Note:

    • textInput.setValue(value) is an alias of the following code.
    textInput.element.value = value
    textInput.trigger('input')
    • select.setValue(value) is an alias of the following code.
    select.element.value = value
    select.trigger('change')