如何在自己的自定义字段中使用laravel nova trix字段?

问题描述 投票:0回答:1

有人可以告诉我如何在自己的自定义字段中使用包含的 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>
laravel-nova
1个回答
0
投票

我已经想通了,只需像这样使用 trix-editor 即可:

<trix-editor />
© www.soinside.com 2019 - 2024. All rights reserved.