Added first basic form elements

This commit is contained in:
Joel Collins 2019-06-13 17:55:33 +01:00
parent 1400f94b2f
commit 4a0351f80c
6 changed files with 197 additions and 9 deletions

View file

@ -0,0 +1,18 @@
<template>
<div>
<p v-html="content"></p>
</div>
</template>
<script>
export default {
name: 'textInput',
props: [
'label',
'name',
'content'
]
}
</script>
<style scoped></style>