[Vue warn]: Runtime directive used on component with non-element root node. The directives will not function as intended.
原因
意思是自定义指令不能放到组件上,而是要放到自有的元素上,也就是这里用到的v-dialogDrag
不能放在自定义组件上
上图的v-dialogDrag指令用在了自定义组件el-dialog身上,就警告了
解决
外面套一层不是自定义组件的东东就可以,比如套了一层div