1.0.2 • Published 2 years ago

vb-input v1.0.2

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

vb-input

Vue 3 input component.

Support Vue3 and Nuxt3 and type-safe. Demo

Documentation

Check out docs at docs.

Types

  • text
  • number
  • password
  • tel
  • email
  • search
  • textarea

Installation

npm i vb-input

Import to component

<template>
  <VBInput :type="'text'" placeholder="name" label="Your Name" v-model="name" />
</template>

<script lang="ts">
import { defineComponent, ref } from 'vue';
import VBInput from 'vb-input';
export default defineComponent({
  components: {
    VBInput,
  },
  setup() {
    const name = ref('');

    return { name };
  },
});
</script>
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago