现在,我在带有Reactjs的shopify Polaris中使用Page
组件。该组件具有breadcrumbs
属性,似乎您只能在页面组件内使用面包屑,如下所示:
<Page
breadcrumbs={[{content: 'Products', url: '/products'}]}
title="Jar With Lock-Lid"
primaryAction={{content: 'Save', disabled: true}}
secondaryActions={[{content: 'Duplicate'}, {content: 'View on your store'}]}
pagination={{
hasPrevious: true,
hasNext: true,
}}
>
<p>Page content</p>
</Page>
我想知道是否有一种无需使用Page组件即可使用面包屑的方法。像这样:
<Breadcrumbs content: 'Products', url: '/products'/>
任何对此的帮助将是巨大的,谢谢!