vue.js ref and vm.$refs取代$("#id")操作dom

在new Vue({

methods:{

    method:function(){

  
var $this = $(event.currentTarget);
var $third_level = $('#third_level');
var $second_level = $("#second_level");

//$("#select_all").attr('id',$this.attr('id'));
$(vm.$refs.select_all).attr("id",$this.attr('id'));

    }

})

vue.js ref and vm.$refs取代$("#id")操作dom