/switch-vue

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

Primary LanguageVueBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

switch vue

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

Installation

	npm install --save ofcold-switch

Usage

	<!-- Html  -->
	<OfcoldSwitch v-model="on_ready"></OfcoldSwitch>
	//	Javascript
	import OfcoldSwitch from 'ofcold-switch';

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