Vue 中冒号 :、@、# 是什么意思?

作者:vkvi 来源:ITPOW(原创) 日期:2019-11-27

分别是:v-bind:、v-on:、v-slot: 的缩写。

<div :class 等效于 <div v-bind:class

<div @click 等效于 <div v-on:click

<template #footer 等效于 <template v-slot:footer

相关文章