<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导入模板就能使用了?
import
进来的函数,需要在methods
中声明,然后才可以在模板中使用一般都是这样:
不在
methods
中声明的话,是Vue3的setup
特性。👉 <script setup> | Vue.js