<template v-slot:one> <div class="row items-center no-wrap"> In Clarification (<strong>{InClarificationCount}</strong>)' </div> </template>在这里面获取InClarificationCount
时间: 2024-02-27 19:55:41 浏览: 104
FC-FS-3 version 1.00 with 64B/66B clarification
在这个 `template` 中,`InClarificationCount` 变量已经作为插槽的一部分被定义了。因此,你可以直接使用 `{InClarificationCount}` 来获取变量的值,就像这样:
```html
<template v-slot:one>
<div class="row items-center no-wrap">
In Clarification (<strong>{InClarificationCount}</strong>)
</div>
</template>
```
在渲染时,Vue.js 会将 `{InClarificationCount}` 替换为 `InClarificationCount` 变量的值。
阅读全文