An open API service indexing awesome lists of open source software.

https://github.com/mathsgod/formkit-quasar


https://github.com/mathsgod/formkit-quasar

Last synced: 5 months ago
JSON representation

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



```