0.1.0 • Published 4 years ago

vue-linkify-text v0.1.0

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

vue-linkify-text

GitHub open issues Npm version

Usage

<LinkifyText :text="hello https://example.com"></LinkifyText>
import { createApp } from "vue";
import App from "./App.vue";
import VueLinkifyText from "@/index";

const app = createApp(App);
app.use(VueLinkifyText);
app.mount("#app");

API

Installation

npm install vue-linkify-text

Project setup

yarn install

Compiles and hot-reloads for development

yarn serve

Compiles and minifies for production

yarn build

Run your unit tests

yarn test:unit

Lints and fixes files

yarn lint