landing.js 150 B

12345678910
  1. window.Vue = require('vue');
  2. Vue.component(
  3. 'landing-page',
  4. require('./components/LandingPage.vue').default
  5. );
  6. new Vue({
  7. el: '#content'
  8. });