保存进度!
This commit is contained in:
		@@ -1,40 +0,0 @@
 | 
			
		||||
<script setup>
 | 
			
		||||
import { ref } from 'vue'
 | 
			
		||||
 | 
			
		||||
defineProps({
 | 
			
		||||
  msg: String,
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
const count = ref(0)
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <h1>{{ msg }}</h1>
 | 
			
		||||
 | 
			
		||||
  <div class="card">
 | 
			
		||||
    <button type="button" @click="count++">count is {{ count }}</button>
 | 
			
		||||
    <p>
 | 
			
		||||
      Edit
 | 
			
		||||
      <code>components/HelloWorld.vue</code> to test HMR
 | 
			
		||||
    </p>
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
  <p>
 | 
			
		||||
    Check out
 | 
			
		||||
    <a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
 | 
			
		||||
      >create-vue</a
 | 
			
		||||
    >, the official Vue + Vite starter
 | 
			
		||||
  </p>
 | 
			
		||||
  <p>
 | 
			
		||||
    Install
 | 
			
		||||
    <a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
 | 
			
		||||
    in your IDE for a better DX
 | 
			
		||||
  </p>
 | 
			
		||||
  <p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.read-the-docs {
 | 
			
		||||
  color: #888;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -2,21 +2,31 @@
 | 
			
		||||
 * @Author: Kane
 | 
			
		||||
 * @Date: 2023-02-28 00:57:21
 | 
			
		||||
 * @LastEditors: Kane
 | 
			
		||||
 * @FilePath: /task_schedule/src/components/login/Login.vue
 | 
			
		||||
 * @FilePath: /deskop_task_schedule/code/web/task_schedule/src/components/login/Login.vue
 | 
			
		||||
 * @Description: 
 | 
			
		||||
 * 
 | 
			
		||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
    登录页面
 | 
			
		||||
    <el-input v-model="ui.p13uid"></el-input>
 | 
			
		||||
    <el-button type="danger">保存</el-button>
 | 
			
		||||
    <span>{{ ui.p13uid }}</span>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
export default {
 | 
			
		||||
    name: "Login",
 | 
			
		||||
    setup(): void
 | 
			
		||||
    {
 | 
			
		||||
import { reactive } from "vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
    name: "LoginPage",
 | 
			
		||||
    setup()
 | 
			
		||||
    {
 | 
			
		||||
        const ui = reactive({
 | 
			
		||||
            p13uid: "",
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        return { ui, };
 | 
			
		||||
    },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user