“Kabel aksi nuxtjs” Kode Jawaban

Kabel aksi nuxtjs

// nuxt.config.js
/*
 ** Plugins to load before mounting the App
 */
plugins: [{ src: '@/plugins/actioncable-vue', ssr: false }];
Homeless Hedgehog

Kabel aksi nuxtjs

import store from './store';
import Vue from 'vue';
import ActionCableVue from 'actioncable-vue';

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

Kabel aksi nuxtjs

// /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
  });
}
Homeless Hedgehog

Jawaban yang mirip dengan “Kabel aksi nuxtjs”

Pertanyaan yang mirip dengan “Kabel aksi nuxtjs”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya