gpt4 book ai didi

javascript - 如何在模板中使用其他vue的组件

转载 作者:行者123 更新时间:2023-12-03 00:39:02 24 4
gpt4 key购买 nike

我在 A.js 文件中编写了一个函数,但我想用它来处理 B.vue 模板中的字符串,但我收到错误 TypeError: _vm.translatecomponent is not a function, i am new to vue,你能告诉我出了什么问题吗?

A.js 
export function traslate(originalValue){
return originalValue
}

B.vue
.......
<el-button type="primary">{{translatecomponent(searchFunc.queryText)}}</el-button>
</template>

<script>
import { translatecomponent } from '@/directive/index' //this is file path

提前致谢

最佳答案

它必须在方法中声明。

B.vue

<script>
import { translatecomponent } from '@/directive/index' //this is file path

export default {
...
methods:{ translatecomponent }
}
</script>

关于javascript - 如何在模板中使用其他vue的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53537670/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com