docs/src/.vuepress/components/Foo/Bar.vue

16 lines
188 B
Vue

<template>
<p class="demo">
{{ msg }}
</p>
</template>
<script>
export default {
data () {
return {
msg: 'Hello this is <Foo-Bar>'
}
}
}
</script>