### 🧐 Problem Description I can not use `v-slots` to get parameters in the slot. ### 💻 Sample code ```jsx <ComponentA> v-slots={{ sex: (record) => { <>{ record.sex === 0 ? 'male' : 'famale' }</> // I can't get the "record". } }} </ComponentA> ``` <!-- If you have a solution, state it clearly here. --> ### 🚑 Other information This is the code using the Vue template syntax. It is works. ```vue <template> <ComponentA> <template #sex="{ record }"> {{ record.sex === 0 ? 'male' : 'famale' }} <!-- It is works. --> </template> </ComponentA> </template> ``` <!-- Other information such as screenshots can be posted here. --> <!-- From: https://github.com/one-template/issue-template -->