繁体   English   中英

[Vue 警告]:无法解析指令:waves(在<i18n>在 src/views/backend/areachange/Index.vue)</i18n>

[英][Vue warn]: Failed to resolve directive: waves (found in <I18n> at src/views/backend/areachange/Index.vue)

在此处输入图像描述

我正在使用https://element.eleme.io/#/我面对每个列表页面

 Vue.directive('custom', { inserted: function(el) { el.style.backgroundColor = 'orange' } }) var app = new Vue({ el: '#app' })
 <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script> <div id="app"> <input v-custom type="text"> <input v-waves type="text"> <!-- The `v-waves` directive will have the same error --> </div>

原因是没有注册自定义指令。 有关自定义指令的更多用法,请参见此处

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM