-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from qianmoQ/feature-dev
[Page] [Form] Add some form
- Loading branch information
Showing
9 changed files
with
173 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default { | ||
common: { | ||
form: 'Form', | ||
formBasic: 'Basic Form', | ||
formWithAction: 'Form with Action', | ||
signInWithGoogle: 'Sign in with Google', | ||
}, | ||
tip: { | ||
formBasic: 'This is a basic form example', | ||
formWithAction: 'Here\'s an example of a form with an action function' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import region from '@/i18n/langs/en/Region' | ||
import common from '@/i18n/langs/en/Common' | ||
import user from '@/i18n/langs/en/User' | ||
import form from '@/i18n/langs/en/Form' | ||
|
||
export default { | ||
region: region, | ||
common: common, | ||
user: user | ||
user: user, | ||
form: form | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default { | ||
common: { | ||
form: '表单', | ||
formBasic: '基础表单', | ||
formWithAction: '带操作功能表单', | ||
signInWithGoogle: '使用 Google 登录', | ||
}, | ||
tip: { | ||
formBasic: '这是一个表单的基础示例', | ||
formWithAction: '这是一个带有操作功能的表单示例' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import region from '@/i18n/langs/zhCn/Region' | ||
import common from '@/i18n/langs/zhCn/Common' | ||
import user from '@/i18n/langs/zhCn/User' | ||
import form from '@/i18n/langs/zhCn/Form' | ||
|
||
export default { | ||
region: region, | ||
common: common, | ||
user: user | ||
user: user, | ||
form: form | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<template> | ||
<div class="container grid h-svh flex-col items-center justify-center bg-primary-foreground lg:max-w-none lg:px-0"> | ||
<div class="mx-auto flex w-full flex-col justify-center space-y-2 sm:w-[480px] lg:p-8"> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle class="text-2xl">{{ $t('form.common.formBasic') }}</CardTitle> | ||
<CardDescription>{{ $t('form.tip.formBasic') }}</CardDescription> | ||
</CardHeader> | ||
<CardContent class="grid gap-4"> | ||
<div class="grid gap-2"> | ||
<Label for="email">{{ $t('user.common.email') }}</Label> | ||
<Input id="email" type="email" :placeholder="$t('user.tip.emailHolder')" required/> | ||
</div> | ||
<div class="grid gap-2"> | ||
<Label for="password">{{ $t('user.common.password') }}</Label> | ||
<Input id="password" type="password" required :placeholder="$t('user.tip.passwordHolder')"/> | ||
</div> | ||
</CardContent> | ||
<CardFooter> | ||
<Button class="w-full">{{ $t('common.common.signIn') }}</Button> | ||
</CardFooter> | ||
</Card> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from 'vue' | ||
import { Button } from '@/components/ui/button' | ||
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card' | ||
import { Input } from '@/components/ui/input' | ||
import { Label } from '@/components/ui/label' | ||
export default defineComponent({ | ||
name: 'FormBasic', | ||
components: { | ||
Button, | ||
Input, | ||
Label, | ||
Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle | ||
} | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<template> | ||
<div class="container grid h-svh flex-col items-center justify-center bg-primary-foreground lg:max-w-none lg:px-0"> | ||
<div class="mx-auto flex w-full flex-col justify-center space-y-2 sm:w-[480px] lg:p-8"> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle class="text-2xl">{{ $t('form.common.formWithAction') }}</CardTitle> | ||
<CardDescription>{{ $t('form.tip.formWithAction') }}</CardDescription> | ||
</CardHeader> | ||
<CardContent> | ||
<div class="grid gap-4"> | ||
<div class="grid gap-2"> | ||
<Label for="email">{{ $t('user.common.email') }}</Label> | ||
<Input id="email" type="email" :placeholder="$t('user.tip.emailHolder')" required/> | ||
</div> | ||
<div class="grid gap-2"> | ||
<div class="flex items-center"> | ||
<Label for="password">{{ $t('user.common.password') }}</Label> | ||
<a href="#" class="ml-auto inline-block text-sm underline">{{ $t('common.common.forgotPassword') }}?</a> | ||
</div> | ||
<Input id="password" type="password" required :placeholder="$t('user.tip.passwordHolder')"/> | ||
</div> | ||
<Button type="submit" class="w-full">{{ $t('common.common.signIn') }}</Button> | ||
<Button variant="outline" class="w-full">{{ $t('form.common.signInWithGoogle') }}</Button> | ||
</div> | ||
<div class="mt-4 text-center text-sm"> | ||
{{ $t('common.tip.signInNoAccount') }} | ||
<RouterLink to="#" class="underline">{{ $t('common.common.signUp') }}</RouterLink> | ||
</div> | ||
</CardContent> | ||
</Card> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from 'vue' | ||
import { Button } from '@/components/ui/button' | ||
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card' | ||
import { Input } from '@/components/ui/input' | ||
import { Label } from '@/components/ui/label' | ||
export default defineComponent({ | ||
name: 'FormWithAction', | ||
components: { | ||
Button, | ||
Input, | ||
Label, | ||
Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle | ||
} | ||
}) | ||
</script> |