[Vuejs]-How to use components for an href in vue.js?

0👍

You cannot use a component as a string

try this (example)

<script>
import Library from './Library.js'
  export default {
    data() {
      return {
        Library: Library
      }
    }
}
</script>

<template>
  <a :href="Library" target="_blank">test</a>
</template>

Leave a comment