We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 749e196 commit 4bdbb2cCopy full SHA for 4bdbb2c
components/vc-table/src/TableCell.jsx
@@ -1,4 +1,4 @@
1
-import { inject } from 'vue';
+import { inject, toRaw } from 'vue';
2
import PropTypes from '../../_util/vue-types';
3
import get from 'lodash-es/get';
4
import classNames from '../../_util/classNames';
@@ -127,7 +127,7 @@ export default {
127
<BodyCell class={cellClassName} {...tdProps}>
128
{indentText}
129
{expandIcon}
130
- {text}
+ {toRaw(text)}
131
</BodyCell>
132
);
133
},
0 commit comments