我想在grapesjs框架中包含多个页面。
kfgdxczn1#
Grapesjs现在支持使用PageManager的页面。您可以在这里查看API文档https://grapesjs.com/docs/api/pages.html方法是
const editor = grapesjs.init({ .... pageManager: { pages: [ { id: 'page-id', styles: `.my-class { color: red }`, // or a JSON of styles component: '<div class="my-class">My element</div>', // or a JSON of components } ] }, })
您可以使用grapesjs.Page中的方法添加、删除、选择页面。
grapesjs.Page
1条答案
按热度按时间kfgdxczn1#
Grapesjs现在支持使用PageManager的页面。您可以在这里查看API文档https://grapesjs.com/docs/api/pages.html
方法是
您可以使用
grapesjs.Page
中的方法添加、删除、选择页面。