有人可以告诉我如何在自己的自定义字段中使用包含的 laravel nova 字段吗?就我而言,我想在自定义字段中使用 TrixField.vue。我找不到如何实现这个...
<template v-for="(item, index) in texts">
<input type="checkbox" :name="index"> {{ index }}
<-- trix field instead of a textarea ?? -->
<textarea class="w-full form-control form-input form-control-bordered">
{{ item }}
</textarea>
</template>
我已经想通了,只需像这样使用 trix-editor 即可:
<trix-editor />