[Vuejs]-I want to display message with v-model but it does not working

0👍

You can just initialize that v-model variable with the initial value.
This should achieve what you are looking for:

data: {
     message: 'initial_message',
}

Leave a comment