标签:不能 eve code temp war alert prevent message vue
v-show不能在<template>
上使用
<button v-on:click="warn(‘Form cannot be submitted yet.‘, $event)">Submit</button>
// ...
methods: {
warn: function (message, event) {
// 现在我们可以访问原生事件对象
if (event) event.preventDefault()
alert(message)
}
}
标签:不能 eve code temp war alert prevent message vue
原文地址:https://www.cnblogs.com/flyerya/p/13982976.html