Justineo / vue-clamp

Clamping multiline text with ease.
https://vue-clamp.vercel.app
MIT License
697 stars 89 forks source link

Doesn't work with v-html #48

Open drayanaindra opened 3 years ago

drayanaindra commented 3 years ago

in my case, i want to render raw html with vue-clamp. I write two type code

In v-clamp tag <v-clamp autoresize :max-lines="2" v-html="item.content"></v-clamp>

Add span inside v-clamp tag <v-clamp autoresize :max-lines="2"> <span v-html="item.content></span> </v-clamp>

and vue-clamp plugin not working with v-html.

Thanks