TerryZ / v-selectmenu

SelectMenu for Vuejs, A simple, easier and highly customized menu solution
https://terryz.github.io/docs-vue/#/selectmenu
MIT License
187 stars 24 forks source link

Customize Header #4

Closed dionfananie closed 6 years ago

dionfananie commented 6 years ago

could i change your header v-selectmenu "select an option" ?, i wanna make some customization in header. please can you make it customizeable?

TerryZ commented 6 years ago

Please check title option on official website demo page.

radarsu commented 5 years ago

Title changes header after opening a dropdown. But is there an option to change "Select an option" text or apply custom translations? Could you reopen?

themaxaboy commented 5 years ago

Title changes header after opening a dropdown. But is there an option to change "Select an option" text or apply custom translations? Could you reopen?

mounted() {
    this.$refs.sm.i18n.advance_default = "Please select an option...";
    this.$refs.sm.i18n.not_found = "Not Found.";
}
TerryZ commented 5 years ago

Title changes header after opening a dropdown. But is there an option to change "Select an option" text or apply custom translations? Could you reopen?

mounted() {
    this.$refs.sm.i18n.advance_default = "Please select an option...";
    this.$refs.sm.i18n.not_found = "Not Found.";
}

Good job!