meteor-vue / vue-meteor

🌠 Vue first-class integration in Meteor
898 stars 111 forks source link

Vue+Meteor SSR calling the client-side component lifecycle hooks `beforeMount()` and `mounted()` on the server-side #409

Open mrauhu opened 4 years ago

mrauhu commented 4 years ago

Greetings, @Akryum.

Problem

Vue+Meteor SSR calling the client-side component lifecycle hooks on the server-side:

This results in breaking other packages from the Vue ecosystem, as example:

How to reproduce

  1. Clone the repo:
    git clone https://github.com/mrauhu/meteor-ssr-vue-meta
    cd meteor-ssr-vue-meta
  2. Run Meteor:
    meteor

Best wishes, Sergey.

welkinwong commented 4 years ago

same

ismail9k commented 3 years ago

Any updates regarding this issue?

ismail9k commented 3 years ago

I've managed to fix this issue in my own project. The main idea is to prevent the Vue instance from mounting on the server, by removing the el property from the Vue object on the server-side, then mount the Vue instance manually client side

/client/app.js

import Vue from 'vue';

// Meteor Tracker integration
import VueMeteorTracker from 'vue-meteor-tracker'
Vue.use(VueMeteorTracker)

import App from './ui/App.vue'
import router from './router'

function createApp () {
  return {
    app: new Vue({
      // el: '#app', <= REMOVE THIS
      router,
      ...App,
    }),
    router,
  }
}

export default createApp;

/client/startup/index.js

import { Meteor } from 'meteor/meteor'
import CreateApp from './app'

Meteor.startup(() => {
  CreateApp().app.$mount('#app');
})

You can test this on my vue-meteor-boilerplate