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 d9313db commit b5a2f4cCopy full SHA for b5a2f4c
frameworks/non-keyed/vue-jsx-vapor/src/App.jsx
@@ -107,9 +107,9 @@ export default defineComponent({
107
<table class="table table-hover table-striped test-data">
108
<tbody>
109
<tr v-for={ctx in rows.value} class={{ danger: ctx.id === selected.value }} data-label={ctx.label.value}>
110
- <td class="col-md-1">{ctx.id}</td>
+ <td class="col-md-1" v-text={ctx.id} />
111
<td class="col-md-4">
112
- <a onClick={() => select(ctx.id)}>{ctx.label.value}</a>
+ <a onClick={() => select(ctx.id)} v-text={ctx.label.value} />
113
</td>
114
<td class="col-md-1">
115
<a onClick={() => remove(ctx.id)}>
0 commit comments