Answers for "vue component template by id"

0

vue component template by id

<script type="text/x-template" id="hello-world-template">
  <p>Hello hello hello</p>
</script>
Vue.component('hello-world', {
  template: '#hello-world-template'
})

https://vuejs.org/v2/guide/components-edge-cases.html#X-Templates
Posted by: Guest on January-14-2021

Code answers related to "vue component template by id"

Browse Popular Code Answers by Language