Shopify Polaris使用不带Page的面包屑组件

时间:2018-12-23 22:15:09

标签: reactjs shopify shopify-app polaris

现在,我在带有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'/>

任何对此的帮助将是巨大的,谢谢!

0 个答案:

没有答案