mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 21:55:59 +00:00
forms
This commit is contained in:
@@ -2,11 +2,12 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import FormProviderCore from './FormProviderCore.svelte';
|
||||
|
||||
export let initivalValues = {};
|
||||
export let initialValues = {};
|
||||
export let template;
|
||||
|
||||
const values = writable(initivalValues);
|
||||
const values = writable(initialValues);
|
||||
</script>
|
||||
|
||||
<FormProviderCore {values}>
|
||||
<FormProviderCore {values} {template}>
|
||||
<slot />
|
||||
</FormProviderCore>
|
||||
|
||||
Reference in New Issue
Block a user