我需要重寫 這段程式碼
export default Vue.extend<Props>({ functional: true, render(h, { props, slots, data }) { const { href, external, target, type, button } = props; const slot = slots().default; console.log(data); ....
到 Vue 3 組合腳本設置, 所以我設法得到了
<script setup lang="ts"> import {h, useSlots} from 'vue'; const props = defineProps<Props>(); const slots = useSlots(); ...
但是我如何取得資料? 從這部分開始 -> render(h, { props, slot, data }) {
資料應該包含 domProps 如果有這樣的..等
console.log(資料);
{ { attrs: { target: '_self', href: 'https://example.com', button: true }, class: [ 'X-button', { 'X-button--': false, 'X-button--size-auto': true } ] }
提前致謝
如果您仍然需要這個,
useSlots().default()
傳回槽的數據,包括 DOM 屬性。