052、Vue3+TypeScript基礎,頁面通訊之一個元件中多個v-model資料繫結

像一棵海草海草海草發表於2024-08-24

01、main.js程式碼如下:

// 引入createApp用於建立Vue例項
import {createApp} from 'vue'
// 引入App.vue根元件
import App from './App.vue'

// 引入emitter用於全域性事件匯流排
// import emitter from '@/utils/emitter'

const app = createApp(App);

// App.vue的根元素id為app
app.mount('#app')

02、App.vue程式碼如下:

<template>
  <div class="app">
    <h2 class="title">App.Vue</h2>
    <Father/>
  </div>
</template>

<script lang="ts" setup name="App">
import Father from "@/view/Father.vue";
</script>

<style scoped>
.app {
  background-color: #ddd;
  box-shadow: 0 0 10px;
  border-radius: 10px;
  padding: 20px;
}

.nav-button {
  display: inline-block; /* 讓連結顯示為塊級元素,以便應用寬度和高度 */
  padding: 10px 20px; /* 內邊距 */
  margin: 0 5px; /* 外邊距,用於按鈕之間的間隔 */
  text-decoration: none; /* 移除下劃線 */
  color: white; /* 文字顏色 */
  background-color: #007bff; /* 背景顏色 */
  border-radius: 5px; /* 邊框圓角 */
  transition: background-color 0.3s; /* 平滑過渡效果 */
}

.nav-button:hover {
  background-color: #0056b3; /* 滑鼠懸停時的背景顏色 */
}

.nav-button.router-link-active {
  background-color: #28a745; /* 當前啟用(路由匹配)時的背景顏色 */
}

.mai-content {
  /* 新增邊框樣式 */
  border: 2px solid #000; /* 邊框寬度、樣式和顏色 */
  border-radius: 5px; /* 可選:新增邊框圓角 */
  padding: 20px; /* 可選:給內部內容新增一些內邊距 */
  margin: 20px; /* 可選:給元素新增一些外邊距,以便與其他元素隔開 */
}
</style>

03、Father.vue程式碼如下:

<template>
  <div class="mypage">
    <h3>我是子頁面1</h3>
    <h4>賬號:{{ usename }},密碼:{{ password }}</h4>
    <Child1 v-model:auser="usename"
            v-model:apwd="password"/>
  </div>
</template>

<script lang="ts" name="Father" setup>
//Child1中用v-model繫結資料
import Child1 from "./Child1.vue";
import {ref} from "vue";

//資料
let usename = ref('名字')
let password = ref('密碼 ')

</script>

<style scoped>
.mypage {
  background-color: #ddd;
  box-shadow: 0 0 10px;
  border-radius: 10px;
  padding: 20px;

  button {
    margin: 0 5px;
  }
}
</style>

04、Child1.vue程式碼如下:

<template>
  <input type="text" :value="auser"
         @input="$emit('update:auser',
         (<HTMLInputElement>$event.target).value)">
  <input type="text" :value="apwd"
         @input="$emit('update:apwd',
         (<HTMLInputElement>$event.target).value)">
</template>

<script lang="ts" name="Son" setup>
defineProps(["auser", "apwd"]);
const emit = defineEmits(["update:auser", "update:apwd"]);

</script>

<style scoped>
input {
  border: 2px solid black;
  background-image: linear-gradient(45deg, red, yellow, green);
  height: 30px;
  width: 100px;
  font-size: 20px;
  color: white;
}
</style>

05、介面如下:

06、介面如下:

相關文章