In Vue2.x, the code can work;
import Vue from \'vue\'; Vue.component(\'helloworld\', { render(h) { return h(\'div\', \'this is helloworld\'); } }); ne