JosephusPaye / Keen-UI

A lightweight Vue.js UI library with a simple API, inspired by Google's Material Design.
https://josephuspaye.github.io/Keen-UI/
MIT License
4.1k stars 438 forks source link

ui-select | Set default value #438

Closed nahojj closed 5 years ago

nahojj commented 5 years ago

Hi,

How should I set the default value of the ui-select component?

            <ui-select
                label="Week"
                v-model="selectedWeek"
                :options="filterWeeks"
                :value="selectedWeek"
                @select="OnFilterWeek"
            >
            </ui-select>
nahojj commented 5 years ago

I've solved it.. The default value I had was a number.. Changed it to a string and it worked!