Created
August 6, 2020 14:59
-
-
Save simonjcarr/26c36464d2cb25f8463a885e00688f27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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