uniapp 实现选项卡功能

template:

items是选项卡的标题,current是当前选中,默认为0

items: ['选项卡1', '选项卡2', '选项卡3'],

        
			
			
				选项卡1的内容
				选项卡2的内容
				选项卡3的内容
			
		

script:

            onClickItem(index) {
				if (this.current !== index.currentIndex) {
					this.current = index.currentIndex;
				}
			},

如有问题,欢迎指正!!!

你可能感兴趣的:(uniapp,vue,uni-app,vue.js)