The problem of adding style to v-html in the Development of Mini Program by vuex

how to modify the img image style in the rich text obtained by v-html?

May.22,2021

<template>
  <div class="container" v-html="htmlContent">
  </div>
</template>

scss:

.container{
    image{
        // your style
    }
}

// css
.container image{
    //your style
}
Menu