You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2020. It is now read-only.
Considering the Hello example, is there a reason not to use regular imports for CSS and the template property of the Component decorator?
importVuefrom"vue";importComponentfrom"vue-class-component";import"./Hello.css";
@Component({template: require("./Hello.html"),})exportdefaultclassHelloextendsVue{msg="Welcome to Your Vue.js App";constructor(){super();}}
The example in the template is currently:
importVuefrom"vue";importComponentfrom"vue-class-component";importWithRenderfrom"./Hello.html?style=./Hello.css";
@WithRender
@ComponentexportdefaultclassHelloextendsVue{msg="Welcome to Your Vue.js App";constructor(){super();}}