Answers for "function attribute in template vue"

3

vue render html raw

<p>Using mustaches: {{ rawHtml }}</p>
<p>Using v-html directive: <span v-html="rawHtml"></span></p>
Posted by: Guest on March-27-2020
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

Browse Popular Code Answers by Language