部分提交

This commit is contained in:
des
2026-01-11 10:11:09 +08:00
parent b56da6575e
commit becb6a512b
9 changed files with 88 additions and 90 deletions

2
html/.gitignore vendored
View File

@@ -37,3 +37,5 @@ __screenshots__/
logs/
tests_output/
*.code-workspace

View File

@@ -1,17 +0,0 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.env.linux": {
"PATH": "/home/nobara/.node/node24/bin:${env:PATH}"
},
"[javascript]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.maxTokenizationLineLength": 2500
}
}
}

View File

@@ -5,12 +5,17 @@
<cv-text-input label="账号"></cv-text-input>
<cv-text-input label="密码账号" type="password"></cv-text-input>
<cv-form-item>
<cv-button text="登录"></cv-button>
<cv-checkbox label="记住密码" v-model="base.check"></cv-checkbox>
<cv-button>登录</cv-button>
</cv-form-item>
</cv-form>
</div>
</template>
<script setup>
import { reactive } from "vue"
const base = reactive({
check: false
})
</script>
<style lang="scss" scoped>
.background{
@@ -26,7 +31,7 @@
.cv-form{
width: 400px;
}
.cv-form > * :not(:first-child) {
margin-top: 16px;
.cv-text-input{
margin-bottom: 8px;
}
</style>