0.0.2 • Published 1 year ago

vue-conf-form-components v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

🚀 Features

  • 🎪 Support for Vue 3
  • 🦾 Simple and user-friendly UI components
  • 🔋 Develop the integration of UnoCSS (optional)
  • 🔩 Compatible with cjs, es, and iife versions

📦 Installation

npm install vue-conf-form-components -S

🕶 Style

import "vue-conf-form-components/dist/index.css";

⚡ Components

import { FCheckboxClear } from "vue-conf-form-components";

const value = ref([]);
const data = ["option1", "option2", "option3", "option4", "option5"];
<f-checkbox-clear
  :data="data"
  :cur-value="value"
  @update="(val) => value = val "
></f-checkbox-clear>
import { FIdInput } from "vue-conf-form-components";

const idNo = ref("");
<f-id-input v-model="idNo"></f-id-input>
import { FormTagsInput } from "vue-conf-form-components";
const tags = ref(['aaaa','bbbb']);
<form-tags-input :tags="tags"/>
import { FormEmailInputNew } from "vue-conf-form-components";

const message = ref("");
<form-email-input-new v-model="message" :options="options" />

License

MIT License © 2023-PRESENT

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago