1.0.0 • Published 7 years ago

@webdataorg/linxios v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
7 years ago

Vue Link Preview

A Vue component for providing you with a websites' metadata, it uses the WebData API for providing the metadata

Demo

Global Install

main.js

import VueLinkPreview from "@webdataorg/vue-link-preview";

Vue.component("VueLinkPreview",VueLinkPreview);

Local Install

App.vue

<template>
  <vue-link-preview>
    <div slot-scope="{ meta }">
      // use your own mark
    </div>
  </vue-link-preview>
</template>

<script>
import VueLinkPreview from "@webdataorg/vue-link-preview";

export default {
  components: {
    VueLinkPreview
  }
}
</script>