initial vuepress

This commit is contained in:
2021-02-13 20:12:43 +01:00
commit a34fdbc58a
13 changed files with 210 additions and 0 deletions

View File

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