Answer the question
In order to leave comments, you need to log in
How to render a template in Vue?
The more I delve into, the more misunderstanding ...
For example, why does it not display anything and there are no errors?
import Vue from 'vue'
// В Example.vue есть <template><div>TEST</div></template>
import Example from './components/Example.vue'
new Vue({
el: '#example',
components: {Example}
});
Answer the question
In order to leave comments, you need to log in
1. You didn't output the plugin itself <example></example>
2. Install the VueDevTools plugin for chrome
The component is rendered like this
import Vue from 'vue'
// В Example.vue есть <template><div>TEST</div></template>
import Example from './components/Example.vue'
new Vue({
el: '#example',
template: '<Example/>',
components: {Example}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question