mint-ui —— switch的使用

版权声明:本文为博主原创文章,转载务必注明出处,http://blog.csdn.net/michael_ouyang。 https://blog.csdn.net/michael_ouyang/article/details/76270752


Import

按需引入:

import { Switch } from 'mint-ui';

Vue.component(Switch.name, Switch);

 

全局导入:全局导入后不用再导入

importMint from'mint-ui'

import'mint-ui/lib/style.css'

Vue.use(Mint);

扫描二维码关注公众号,回复: 3020588 查看本文章

  

API




示例

示例一:

xxx.vue

<template>
  <div id="app">
		<mt-switch v-model="value" @change="turn">Switch</mt-switch>
		
  </div>
</template>

<script>
export default {
  name: 'app',
  data () {
  	return {
  		value: false
  	}
  },
  mounted:function(){
  	
  },
  methods:{
  	turn: function(){
  		console.log(this.value)
  	}
  }
}
</script>

<style>
	
</style>

show


点击开关按钮,输出值


备注:

1.

事件只能使用change,不能使用click



demo链接:http://download.csdn.net/detail/michael_ouyang/9915042

使用前输入命令:

npm install

npm run dev


猜你喜欢

转载自blog.csdn.net/michael_ouyang/article/details/76270752