ladariha-button

0.2.0 • Public • Published

universal-button written in Vue3

How to use it

  • no BUILD! The component is published as NPM package in form of source code
  • never import anything in this project from vue or @vue/composition-api, instead use vue-demi
  • add dependency:
yarn add ladariha-button
  • import vue file directly
import MyButton from "ladariha-button/src/components/MyButton.vue";

Sample usage in Vue2 project:

<template>
  <div id="app">
    <MyButton />
    Reactive number: {{ randomNumber }}
  </div>
</template>

<script lang="ts">
import MyButton from "ladariha-button/src/components/MyButton.vue";
import { defineComponent, ref } from "@vue/composition-api";

export default defineComponent({
  name: "App",
  components: {
    MyButton,
  },
  setup() {
    const randomNumber = ref(Math.random());

    setInterval(() => {
      randomNumber.value = Math.random();
    }, 3000);

    return { randomNumber };
  },
});
</script>

Readme

Keywords

none

Package Sidebar

Install

npm i ladariha-button

Weekly Downloads

1

Version

0.2.0

License

none

Unpacked Size

11.1 kB

Total Files

9

Last publish

Collaborators

  • ladariha