Skip to content

Instantly share code, notes, and snippets.

@gwenaelp
Created August 2, 2018 02:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwenaelp/c5d5e4835d14c9bdca95b5bfda29a034 to your computer and use it in GitHub Desktop.
Save gwenaelp/c5d5e4835d14c9bdca95b5bfda29a034 to your computer and use it in GitHub Desktop.
<template>
<div>
<h1>Form</h1>
<vue-form-generator
:schema="schema"
:model="model"
/>
<h1>Result</h1>
{{model}}>
</div>
</template>
<script>
import schema from './schema';
export default {
data() {
return {
schema,
model: {},
};
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment