Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Created August 6, 2020 14:59
Show Gist options
  • Select an option

  • Save simonjcarr/26c36464d2cb25f8463a885e00688f27 to your computer and use it in GitHub Desktop.

Select an option

Save simonjcarr/26c36464d2cb25f8463a885e00688f27 to your computer and use it in GitHub Desktop.
import { Meteor } from 'meteor/meteor'
import Vue from 'vue';
import router from './routes'
import AppComponent from '/imports/ui/App.vue';
Meteor.startup(() => {
new Vue({
router,
render: (h) => h(AppComponent),
}).$mount('#app');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment