0.1.11 • Published 2 years ago

vue3-nre v0.1.11

Weekly downloads
-
License
MIT
Repository
bitbucket
Last release
2 years ago

NRE COMPONENTS FOR VUE3 LIBRARY

This components uses: vue3, Bootstrap 5 and Elements-Plus

SETUP

Install the setup

yarn add vue3-nre

You can use the plugin in main.js to free globally use in any place of project like below:

...
import Vue3Nre from "vue3-nre"
import "vue3-nre/style.css";

...
app.use(Vue3Nre)
...

OR

You can free import the components in any place of project. BUT, is need to import the styles in main.js

...
import "vue3-nre/style.css";

in .vue files:

...
import { EmbedPlayer } from "vue3-nre";
...

export default {
  components: { EmbedPlayer }
}

Import the specific component on file like below:

<template>
  ...
  <video-player />
  ...
</template>
<script>
  ...
  import { VideoPlayer } from "vue3-nre"
  ...
</script>
...