我正在编写一个代码,该代码需要计算一些逻辑,例如处理一些数组。
因此,通常情况下,单个文件Vue组件如下所示:
<template>
...
</template>
<script>
import ...
// When should I put my code here?
export default {
created: function() {
// And what type of code I should put here?
}
}
</script>
我应该在何时import
和export
之间插入什么类型的代码?
谢谢!
答案 0 :(得分:0)
也许您可以在那里定义一些常数。像这样:
const THIS_IS_A_CONSTANT = 'thisIsAConstant'