vue导入的方法使用问题?
<template>
<el-link :underline="false" :href="fileUrl + note.newFile" v-if="note.newFile">{{ getFileName(note.newFile) }}</el-link>
</template>
<script>
import { getFileName } from '@/utils/utils';
export default {
computed: {
},
methods: {
...{ getFileName }
}
}
</script>
为什么要在methods导入才能使用,我记得是import导入模板就能使用了?
回复
1个回答
test
2024-07-02
import
进来的函数,需要在 methods
中声明,然后才可以在模板中使用一般都是这样:
<script>
import { getFileName, getDateTime } from '@/utils/utils';
export default {
methods: {
getFileName,
getDateTime
}
}
</script>
不在 methods
中声明的话,是Vue3的 setup
特性。👉 <script setup> | Vue.js
import
导入的内容也会以同样的方式暴露。这意味着我们可以在模板表达式中直接使用导入的helper
函数,而不需要通过methods
选项来暴露它:<script setup> import { capitalize } from './helpers' </script> <template> <div>{{ capitalize('hello') }}</div> </template>
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容