Vue3基础之v-bind与v-on

简介: Vue3基础之v-bind与v-on

概念与使用

v-bindv-on 是 Vue 中两个非常常用的指令,分别用于属性绑定和事件绑定。

v-bind

v-bind 用于动态地绑定属性。你可以使用 v-bind 来绑定 HTML 元素的各种属性,例如 classstylehref 等。在 Vue 3 中,你还可以使用简写语法 : 来代替 v-bind

1. 基本用法

<template>
  <div>
    <!-- 使用 v-bind 绑定 class 属性 -->
    <div v-bind:class="{ 'active': isActive, 'error': hasError }">Example</div>

    <!-- 使用 : 绑定 style 属性 -->
    <div :style="{ color: textColor, fontSize: textSize + 'px' }">Styled Text</div>

    <!-- 使用 v-bind 绑定 href 属性 -->
    <a v-bind:href="url">Link</a>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isActive: true,
      hasError: false,
      textColor: 'red',
      textSize: 16,
      url: 'https://www.example.com'
    };
  }
};
</script>

2. 动态属性绑定

<template>
  <div>
    <!-- 使用计算属性绑定动态 class -->
    <div v-bind:class="computedClasses">Dynamic Classes</div>
  
    <!-- 直接在插值表达式中使用 JavaScript 表达式 -->
    <div :style="{ color: isActive ? 'green' : 'red' }">Dynamic Style</div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isActive: true
    };
  },
  computed: {
    computedClasses() {
      return {
        active: this.isActive,
        'text-danger': !this.isActive
      };
    }
  }
};
</script>

内联样式绑定数组、对象

通过 :style 将这个对象应用到元素上。当 dynamicStylesObject 中的属性值发生变化时,元素的样式也会相应地更新。

<template>
  <div>
    <!-- 内联样式绑定对象 -->
    <div :style="dynamicStylesObject">Dynamic Styles (Object)</div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      dynamicStylesObject: {
        color: 'blue',
        fontSize: '20px',
        backgroundColor: 'lightgray'
      }
    };
  }
};
</script>

通过绑定一个数组到 v-bind:style 或 :style 上,可以将多个样式对象组合应用到元素上。baseStyles 和 dynamicStylesArray 是两个样式对象,通过 :style 将它们组合应用到元素上。这种方式可以用于将基本样式与动态样式组合,实现更灵活的样式管理。以下是例子:

<template>
  <div>
    <!-- 内联样式绑定数组 -->
    <div :style="[baseStyles, dynamicStylesArray]">Dynamic Styles (Array)</div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      baseStyles: {
        color: 'green',
        fontSize: '18px'
      },
      dynamicStylesArray: {
        backgroundColor: 'yellow'
      }
    };
  }
};
</script>

v-on

v-on 用于监听 DOM 事件,例如点击、输入、鼠标移入等。你可以使用 v-on 来绑定事件处理函数。在 Vue 3 中,你还可以使用简写语法 @ 来代替 v-on

1. 基本用法


<template>
  <div>
    <!-- 使用 v-on 绑定 click 事件 -->
    <button v-on:click="handleClick">Click me</button>

    <!-- 使用 @ 绑定 mouseover 事件 -->
    <div @mouseover="handleMouseOver">Mouse over me</div>
  </div>
</template>

<script>
export default {
  methods: {
    handleClick() {
      console.log('Button clicked');
    },
    handleMouseOver() {
      console.log('Mouse over');
    }
  }
};
</script>

2. 事件修饰符和参数

在事件处理函数中,可以使用 $event 获取原生事件对象。Vue 3 提供了一些事件修饰符,用于简化事件处理逻辑。

<template>
  <div>
    <!-- 传递事件参数 -->
    <input v-on:input="handleInput($event)" />

    <!-- 使用修饰符.prevent 阻止默认行为 -->
    <form v-on:submit.prevent="handleSubmit">Submit Form</form>

    <!-- 使用修饰符.stop 阻止事件冒泡 -->
    <div v-on:click.stop="handleClick">Click me</div>
  </div>
</template>

<script>
export default {
  methods: {
    handleInput(event) {
      console.log('Input value:', event.target.value);
    },
    handleSubmit() {
      console.log('Form submitted');
    },
    handleClick() {
      console.log('Div clicked');
    }
  }
};
</script>
目录
相关文章
|
5天前
|
JavaScript 索引
Vue 2和Vue 3的区别以及实现原理
Vue 2 的响应式系统通过Object.defineProperty来实现,它为对象的每个属性添加 getter 和 setter,以便追踪依赖并响应数据变化。
20 9
|
6天前
|
JavaScript 开发工具
vite如何打包vue3插件为JSSDK
【9月更文挑战第10天】以下是使用 Vite 打包 Vue 3 插件为 JS SDK 的步骤:首先通过 `npm init vite-plugin-sdk --template vue` 创建 Vue 3 项目并进入项目目录 `cd vite-plugin-sdk`。接着,在 `src` 目录下创建插件文件(如 `myPlugin.js`),并在 `main.js` 中引入和使用该插件。然后,修改 `vite.config.js` 文件以配置打包选项。最后,运行 `npm run build` 进行打包,生成的 `my-plugin-sdk.js` 即为 JS SDK,可在其他项目中引入使用。
|
5天前
|
JavaScript 调度
Vue3 使用 Event Bus
Vue3 使用 Event Bus
10 1
|
5天前
|
JavaScript
Vue3 : ref 与 reactive
Vue3 : ref 与 reactive
9 1
|
6天前
|
JavaScript
|
6天前
vue3定义暴露一些常量
vue3定义暴露一些常量
|
5天前
Vue3 使用mapState
Vue3 使用mapState
9 0
|
JavaScript 前端开发 数据格式
|
1天前
|
JavaScript 前端开发
Vue项目使用px2rem
Vue项目使用px2rem
|
1天前
|
JavaScript 前端开发
vue动态添加style样式
vue动态添加style样式