Skip to content

Drupal Display Mode-powered Entity, Form and Field Druxt components.

DruxtFieldLink

View source on GitHub

DruxtFieldLink

Deprecated

Link field.


.computed

Kind: static property of DruxtFieldLink


Array of Link components and properties.

Kind: static property of computed
Example

[
  // External URL.
  {
    component: 'a',
    props: {
      href: 'https://example.com'
    }
  },
  // Internal path.
  {
    component: 'nuxt-link',
    props: {
      to: '/'
    }
  }
]