Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 1109611

Browse files
authored
docs(readme): added migration guide
1 parent 2b3f19b commit 1109611

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Complete documentation and examples available at
3737

3838
- **[Documentation](https://vue-dynamic-forms.netlify.app)**
3939
- **[Demos](#demos)** or if you prefer online [here](https://vue-dynamic-forms.netlify.app/)
40-
- **Migration Guide** (soon)
40+
- **[Migration Guide](https://vue-dynamic-forms-docs.netlify.app/v3/guide/migration-guide.html)**
4141

4242
## Installation
4343

@@ -87,7 +87,7 @@ import {
8787
export default defineComponent({
8888
name: 'BasicDemo',
8989
setup() {
90-
const form = computed(() => ({
90+
const form = ref({
9191
id: 'basic-demo',
9292
fields: {
9393
username: TextField({
@@ -114,7 +114,7 @@ export default defineComponent({
114114
label: 'Remember Me',
115115
}),
116116
},
117-
}));
117+
});
118118
119119
function valueChanged(values) {
120120
console.log('Values', values);
@@ -202,7 +202,7 @@ If you find this library useful and you want to help improve it, maintain it or
202202

203203
## Todolist
204204

205-
- [] Update docs
205+
- [ ] Update docs
206206

207207
## License
208208

0 commit comments

Comments
 (0)