<q-btn-toggle v-model="searchInfo.ViewType" flat toggle-color="primary" @click="bindBaseInfo" :options="[ {label: 'In Process', value: 'InProcess', tabSelected}, {label: 'In Clarification (<strong>' + InClarificationCount + '</strong>)', value: 'InClarification', slot: 'one'}, {label: 'Supplement Event Details ('+ SupplementEventDetailsCount +')', value: 'SupplementEventDetails'}, {label: 'Completed', value: 'Completed'}, {label: 'All', value: 'All'}, ]"> <template v-slot:one> <div class="row items-center no-wrap"> In Clarification (<strong>{InClarificationCount}</strong>)' </div> </template> </q-btn-toggle>
时间: 2024-04-28 15:23:11 浏览: 91
vue指令之表单控件绑定v-model v-model与v-bind结合使用
这是一个 Vue.js 的代码,包含了一个 `q-btn-toggle` 组件和一些属性和事件。其中 `v-model` 绑定了一个叫做 `searchInfo.ViewType` 的变量,`options` 属性包含了一些选项,每个选项有一个标签和一个值,同时还有一个插槽 `one`,用于显示额外的信息。点击事件 `@click` 绑定了一个方法 `bindBaseInfo`。
阅读全文