简体   繁体   中英

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

在此处输入图像描述

I am using https://element.eleme.io/#/ I am facing in every listing pages

 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>

The reason is that there is no custom directive registered. For more usage of custom directives, please see here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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