问题 I try many way to style part of the data object using computed, watch, and method property in vuejs. I still have no clue what can I do to make just the "healthy" word within the 'It is healthy!' string into different style. <template> <div='container'> <div v-for="item in food"> {{ item }} </div> </div> </template> <script> export default{ data(){ return{ food: [ { name: 'fish', message: 'It is great!'}, { name: 'carrot', message: 'It is healthy!'}, ], } } } </script> 回答1: Here's a working