srcdev-nuxt-forms 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
package/pages/index.vue
CHANGED
|
@@ -5,20 +5,19 @@
|
|
|
5
5
|
<div>
|
|
6
6
|
<h1>Sample form page</h1>
|
|
7
7
|
|
|
8
|
-
<
|
|
8
|
+
<FormWrapper width="medium">
|
|
9
9
|
<template #default>
|
|
10
10
|
<form>
|
|
11
11
|
<p>Form content</p>
|
|
12
|
-
<
|
|
12
|
+
<FormField width="wide" :has-gutter="true">
|
|
13
13
|
<template #default>
|
|
14
14
|
<p>Input text</p>
|
|
15
|
-
<FormsInputTextCore />
|
|
16
15
|
<InputTextCore />
|
|
17
16
|
</template>
|
|
18
|
-
</
|
|
17
|
+
</FormField>
|
|
19
18
|
</form>
|
|
20
19
|
</template>
|
|
21
|
-
</
|
|
20
|
+
</FormWrapper>
|
|
22
21
|
</div>
|
|
23
22
|
</template>
|
|
24
23
|
</NuxtLayout>
|
|
File without changes
|
|
File without changes
|