https://github.com/mathsgod/formkit-quasar
https://github.com/mathsgod/formkit-quasar
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathsgod/formkit-quasar
- Owner: mathsgod
- Created: 2023-12-14T04:20:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T09:48:22.000Z (over 1 year ago)
- Last Synced: 2025-10-13T03:25:08.163Z (8 months ago)
- Language: Vue
- Size: 262 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FormKit Quasar
A simple input wrapper of Quasar for FormKit.
Most of the components are based on Quasar, attributes directly pass to the quasar component.
## Installation
```bash
npm install formkit-quasar
```
## Setup
```js
import { createApp } from 'vue'
import App from './App.vue'
import { Quasar } from 'quasar'
import 'quasar/dist/quasar.prod.css'
const app = createApp(App);
import { createQuasarPlugin } from "formkit-quasar";
import { plugin, defaultConfig } from '@formkit/vue'
app.use(Quasar, {
plugins: {}
});
app.use(plugin, defaultConfig({
plugins: [createQuasarPlugin()]
}));
app.mount('#app')
```
## Usage
```html
```