📜  action cable nuxtjs - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:11.702000             🧑  作者: Mango

代码示例3
// /plugins/actioncable-vue.js

import Vue from 'vue';
import ActionCableVue from 'actioncable-vue';

if (process.client) {
  Vue.use(ActionCableVue, {
    debug: true,
    debugLevel: 'all',
    connectionUrl: process.env.WEBSOCKET_HOST,
    connectImmediately: true
  });
}