Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 862 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 862 Bytes

@vuecs/link 🔗

npm version CI

A package containing a link component.

Table of Contents

Installation

$ npm i --save @vuecs/link

Usage

Register the plugin.

import install from '@vuecs/link';
import { createApp } from 'vue'

const app = createApp({})

app.use(install, {
  /* optional options */
})

After the component is registered, it can be used as follows.

<template>
    <VCLink
        :to="'/route'"
    />
</template>

License

Made with 💚

Published under MIT License.