[Vuejs]-Style a part of text in vue.js, when using a slot-scope

1👍

You can split your string concatenation up, and put the text that you want in between <strong> tags:

<template slot-scope="scope">
    <strong>{{ formatModel(scope.row.subject_type) }}</strong>:
    {{ scope.row.description }}
</template>
👤Terry

Leave a comment