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

https://github.com/ofcold/switch-vue

An on/off switch component for Vue.js with theme support.
https://github.com/ofcold/switch-vue

Last synced: 23 days ago
JSON representation

An on/off switch component for Vue.js with theme support.

Awesome Lists containing this project

README

          

# switch vue
An on/off switch component for Vue.js with theme support.

## Installation

```bash
npm install --save ofcold-switch
```

## Usage

```html


```

```javascript
// Javascript
import OfcoldSwitch from 'ofcold-switch';

export default {
data:() => ({
on_ready: false
}),
components: {
OfcoldSwitch
}
}
```