vue

懒加载vue-lazyload

链接

vue表达式

vue_第1张图片
vue表达式

解决vue页面加载返回来的数据渲染到页面,之前的css不起作用

dataList 是绑定的数据

watch:{
        dataList: function(){
            this.$nextTick(function(){
                $('.content a').css({
                    'text-decoration': 'underline',
                    'color': '#72ACE3'
                })
            })
        }
    }

你可能感兴趣的:(vue)