美文网首页
uni-app 选中效果

uni-app 选中效果

作者: 配角_2763 | 来源:发表于2020-11-10 10:19 被阅读0次
要实现这样一个选中效果,直接看代码啦 代码贴出来给你们

<template>

<view class="content">

<view  class="langlist" :class="[current=='0'?'blue':'']" @tap="select(0)"><image src="../../static/logo.png"></image>中文繁體</view>

<view class="langlist" :class="[current=='1'?'blue':'']" @tap="select(1)"><image src="../../static/logo.png"></image>英文</view>

</view>

</template>

<script>

export default {

data() {

return {

current:0

}

},

methods: {

select(index) {

this.current = index;

console.log(this.current)

},

}

}

</script>

<style>

</style>