You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
247 B

4 weeks ago
  1. import Vue from 'vue'
  2. export default {
  3. name: 'NuxtLink',
  4. extends: Vue.component('RouterLink'),
  5. props: {
  6. prefetch: {
  7. type: Boolean,
  8. default: true
  9. },
  10. noPrefetch: {
  11. type: Boolean,
  12. default: false
  13. }
  14. }
  15. }