Files
Getting-Started-With-ACPI/.vuepress/components/Foo/Bar.vue
Mykola Grymalyuk 3586de127a Inital import
2020-07-17 14:46:53 -06:00

16 lines
188 B
Vue
Executable File

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