Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Created August 6, 2020 15:12
Show Gist options
  • Save simonjcarr/409f169189ae0749fdaebeb0b57c432a to your computer and use it in GitHub Desktop.
Save simonjcarr/409f169189ae0749fdaebeb0b57c432a to your computer and use it in GitHub Desktop.
import { Meteor } from 'meteor/meteor'
import Vue from 'vue'
import AppComponent from '/imports/ui/App.vue';
Meteor.startup(() => {
new Vue({
render: (h) => h(AppComponent),
}).$mount('#app');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment