Switch

基本用法

按年付费 按月付费

<g-switch
	v-model="value1"
	v-on:change="print"
	inactive-value="按年付费"
	active-value="按月付费">
</g-switch>

自定义颜色

按年付费 按月付费

<g-switch
	v-model="value2"
	v-on:change="print"
	activeColor="red"
	inactiveColor="green"
	inactive-value="按年付费"
	active-value="按月付费">
</g-switch>

禁用

按年付费 按月付费

<g-switch
	v-model="value3"
	v-on:change="print"
	disabled
	inactive-value="按年付费"
	active-value="按月付费">
</g-switch>