我对 Vue.js 比较陌生,现在我想在我的 Laravel 应用程序中安装这个插件vue-chat-scroll,但它会抛出这个错误:
[Vue 警告]:无法解析指令:chat-scroll
(在 [ChatLog] 中找到)
我跑npm install --save vue-chat-scroll
成功了。
我package.json
有插件的实体:
"dependencies": {
"laravel-echo": "^1.3.0",
"pusher-js": "^4.1.0",
"vue-chat-scroll": "^1.1.1"
}
在bootstrap.js
我添加了自述文件中描述的 2 行。
window.Vue = require('vue');
import VueChatScroll from 'vue-chat-scroll'
Vue.use(VueChatScroll);
window.axios = require('axios');
window.axios.defaults.headers.common = {
'X-CSRF-TOKEN': window.Laravel.csrfToken,
'X-Requested-With': 'XMLHttpRequest'
};
在我的ChatLog.vue
我添加了v-chat-scroll
指令。
<template lang="html">
<div class="chat-log" v-chat-scroll>
<chat-message v-for="message in messages" :message="message"></chat-message>
</div>
</template>
<script >
export default{
props: ['messages']
}
</script>
我错过了什么?