VUE+ElementUI单选表格

选择单行进行绑定VUE+ElementUI单选表格_第1张图片

html

 
       
           
               
        
        
         	
         
         
             
          
 

      确认绑定
      取 消
  

js

export default {
    data() {
        return {
        	tableData: [{
                    name: '王小虎',
                    phone: '135687124544'
                }, {
                    name: '王小虎',
                    phone: '135687124544'
                }, {
                    name: '王小虎',
                    phone: '135687124544'
                }, {
                    name: '王小虎',
                    phone: '135687124544'
                }]
        }
     }
     methods: {
         confirmSet() {
              this.dialogVisible = false;
           },
           handleClose() {
               this.dialogVisible = false;
            },
      }
}

你可能感兴趣的:(vue.js,前端)