0.0.41 • Published 6 months ago

@rekamy/vue-component v0.0.41

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 months ago

Reka Vue Component

Quickstart

Install:

npm install @rekamy/vue-component

# or use yarn

yarn add @rekamy/vue-component

Import and register plugin:

// main.ts or main.js

import { createApp } from "vue";
import App from "./App.vue";

import RekaComponent from "@rekamy/vue-component";
import '../node_modules/@rekamy/vue-component/dist/style.css';

createApp(App)
    .use(RekaComponent)
    .mount("#app");

Then, use plugin without import:

<template>
    
    <!-- Instead of <RouterView /> -->
    <RekaPage /> 
    
    <!-- Instead of <input value=""> -->
    <RekaInputText 
        v-model="inputRef" 
        :error="errorMsg"
        is-required
        /> 

</template>

<script setup lang="ts">
    import { ref } from "vue";
    const inputRef = ref();
    const errorMsg = ref();
</script>

Contribution Guide

Pack & Publish

  1. Update the code.
  2. Run npm run typecheck and fix any issues.
  3. Run npm run lint and fix any issues.
  4. Update package.json version.
  5. Run npm run build.
  6. Run npm pack.
  7. Test the package using the pack version and rebuild if necessary.
  8. Commit changes to git.
  9. Run npm publish.

Todo

  • component (no dependencies)
  • component (has dependencies)
0.0.40

6 months ago

0.0.41

6 months ago

0.0.38

9 months ago

0.0.35

9 months ago

0.0.36

9 months ago

0.0.24

1 year ago

0.0.25

12 months ago

0.0.30

11 months ago

0.0.31

11 months ago

0.0.32

11 months ago

0.0.27

12 months ago

0.0.28

12 months ago

0.0.29

11 months ago

0.0.20

1 year ago

0.0.21

1 year ago

0.0.22

1 year ago

0.0.23

1 year ago

0.0.15

1 year ago

0.0.16

1 year ago

0.0.17

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.10

1 year ago

0.0.11

1 year ago

0.0.12

1 year ago

0.0.13

1 year ago

0.0.14

1 year ago

0.0.16-alpha.1

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.6

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago