File "demo-component.vue"

Full Path: /home/fundopuh/trader.fxex.org/vendor/kingflamez/laravelrave/docs/.vuepress/components/demo-component.vue
File size: 194 bytes
MIME-type: text/html
Charset: utf-8

<template>
  <p class="demo">
    {{ msg }}
  </p>
</template>

<script>
  export default {
    data() {
      return {
        msg: 'Hello this is <demo-component>'
      }
    }
  }
</script>