vue3.x 模板语法-指令
Posted 天行子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.x 模板语法-指令相关的知识,希望对你有一定的参考价值。
注:实例环境 vue cli构建的项目
app.vue
<template>
<Example></Example>
</template>
<script>
import Example from \'./components/Example\'
export default {
name: \'App\',
components: {
Example
}
}
</script>
<style>
</style>
Example.vue
<template>
<div>
<p v-if="seen">{{name}}</p>
<p>
<a v-bind:href="url">{{title}}</a>
</p>
<p>
<a v-on:click="handleClick">点击事件</a>
</p>
<form v-on:submit.prevent="handleSubmit">
<input type="text" v-model="username"/>
<input type="submit" value="提交"/>
</form>
</div>
</template>
<script>
export default {
name: "Example",
data:function () {
return {
name:\'天行子\',
seen:true,
url:\'https://www.cnblogs.com/hu308830232\',
title:\'vue3-指令\',
username:\'\'
}
},
methods:{
handleClick:function () {
alert(\'点击事件触发了...\');
},
handleSubmit:function () {
alert(\'username:\' + this.username);
}
}
}
</script>
<style scoped>
</style>
浏览器看效果
http://localhost:8082/
Example.vue(指令缩写版)
<template>
<div>
<p v-if="seen">{{name}}</p>
<p>
<a :href="url">{{title}}</a>
</p>
<p>
<a @click="handleClick">点击事件</a>
</p>
<form @submit.prevent="handleSubmit">
<input type="text" v-model="username"/>
<input type="submit" value="提交"/>
</form>
</div>
</template>
<script>
export default {
name: "Example",
data:function () {
return {
name:\'天行子\',
seen:true,
url:\'https://www.cnblogs.com/hu308830232\',
title:\'vue3-指令\',
username:\'\'
}
},
methods:{
handleClick:function () {
alert(\'点击事件触发了...\');
},
handleSubmit:function () {
alert(\'username:\' + this.username);
}
}
}
</script>
<style scoped>
</style>
浏览器看效果
http://localhost:8082/
以上是关于vue3.x 模板语法-指令的主要内容,如果未能解决你的问题,请参考以下文章
三个小时vue3.x从零到实战(中)(vue3.x高级语法)