赞
踩
v-pre用来跳过当前节点的编译过程,加快编译速度。
用途如下:
<!-- v-pre -->
<span v-pre>{{ this will not be compiled }}</span>
<!-- 页面直接显示以下内容 -->
{{ this will not be compiled }}
作用是定义它的元素或组件只会渲染一次,包括元素或者组件的所有字节点。首次渲染后,不再随着数据的改变而重新渲染。
<template> <div> <div v-once>{{title}}</div> <button @click="editTitle">编辑标题</button> </div> </template <script> export default { data(){ return { msg: "第一次渲染" } }, methods: { editTitle(){ this.msg = "第二次渲染" } } } </script>
如上即使触发 button
的 click
事件,也不会改变 msg
的渲染状态
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。