form-create icon indicating copy to clipboard operation
form-create copied to clipboard

建议支持将form-create标签内的slot传递到自定义组件的内部slot

Open zjjjjjjjjjjd opened this issue 3 years ago • 1 comments

这是组件内部的slot:

// custom.js
<template>
    <div class="extra-input-wrap">
        <slot name="extra" /> 
    </div>
</template>

这是需要灵活变动的页面特殊需求:

// page.js
<template>
    <form-create
            v-model="fApi"
            :rule="template"
     >
              <template slot="extra">
                    里面会很复杂
              </template>
     </form-create>
</template>

希望能达到以上的效果

zjjjjjjjjjjd avatar Aug 26 '22 01:08 zjjjjjjjjjjd

感谢反馈

xaboy avatar Aug 29 '22 01:08 xaboy