[Vuejs]-Vue single file components – giving strange output without render function

0πŸ‘

Can you do this then?

<div id="app">
  <div>Static div</div>

  <div id="vueApp"></div>
</div>
import Vue from 'vue';
import App from './App';

new Vue({
  el: '#vueApp',
  render: h => h(App),
});

Leave a comment