0.0.5 • Published 3 years ago

@me_slack/vueeasyform v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

VSwitch

A <VSwitch> component for Vue.js 3.

Installation

yarn add @me_slack/vueeasyform

npm install @me_slack/vueeasyform

Usage

<template>
  <!-- demo coming soon-->
  <VueEasyForm></VueEasyForm>
</template>

<script lang="ts">
import { defineComponent, ref } from 'vue'
import VueEasyForm from '@me_slack/vueeasyform'

export default defineComponent({
  components: {
    VueEasyForm
  }
})
</script>

If you are using the browser build, or you like to register components globally, that works fine, too:

// with a bundler
import { createApp } from 'vue'
const app = createApp(/* ... */)
app.component('VueEasyForm', VueEasyForm)

// or using the global build
// assumes Vue is available globally - VueEasyForm is available globally via `VueEasyForm`
const app = Vue.createApp(/* ... */)
app.component('VueEasyForm', VueEasyForm)

License

MIT

0.0.5

3 years ago

0.0.4

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago