VUE 绑定的方法如何直接使用外部函数?
例如我
import {test} from './test.js'
我如何直接在 <el-dialog :before-close= "test(this)">
中使用
还是必须创建一个中转函数才行
请高手赐教,谢谢!
回答:
Vue3:
<template> <el-dialog :before-close="test"></el-dialog>
</template>
<script setup>
import { test } from './test.js'
</script>
Vue2:
<template> <el-dialog :before-close="test"></el-dialog>
</template>
<script>
import { test } from './test.js'
export default {
methods: { test }
}
</script>
以上是 VUE 绑定的方法如何直接使用外部函数? 的全部内容, 来源链接: utcz.com/p/934521.html