现在我正在使用Page
带有 Reactjs 的 shopify polaris 中的组件。这个组件有一个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'/>
对此的任何帮助都会很棒,谢谢!