0.1.0 • Published 4 years ago

vue-v-link v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

vue-v-link

Detect external/(nuxt-link/router-link) by simple functional component. You can use the same component for each link type.

Install

npm

npm install vue-v-link

yarn

yarn add vue-v-link

How to use

Global Registration

import VLink from 'vue-v-link'

Vue.use(VLink)

Simple usage

<v-link to="/internal-page"> internal page </v-link>
<v-link to="https://google.com"> external page </v-link>
<v-link to="mailto:joe@kowalski.com"> mailto link </v-link>