element-ui中 右击显示下拉菜单

1.
	
		 
			 <----展示的内容--->
			 
				 /el-dropdoen-item>
				
			
		
	

methods:{
	rightClick(item) {
		const name = `work_flow_${item.name}`;
		this.$refs[name][0].show();     // 这步最关键,让下拉菜单显示
	}
}

你可能感兴趣的:(element-ui)