utils
使用 utils/ 目录在整个应用程序中自动导入你的实用函数。
utils/
目录的主要目的是允许你的 Vue composables 和其他自动导入的实用函数之间存在语义上的区分。
用法
方法 1:使用命名导出
utils/index.ts
export const { format: formatNumber } = Intl.NumberFormat('en-GB', {
notation: 'compact',
maximumFractionDigits: 1
})
方法 2:使用默认导出
utils/random-entry.ts 或 utils/randomEntry.ts
// It will be available as randomEntry() (camelCase of file name without extension)
export default function (arr: Array<any>) {
return arr[Math.floor(Math.random() * arr.length)]
}
你现在可以在 .js
、.ts
和 .vue
文件中使用自动导入的实用函数
app.vue
<template>
<p>{{ formatNumber(1234) }}</p>
</template>
在文档 > 示例 > 功能 > 自动导入中阅读和编辑一个实时示例。
utils/
自动导入的工作方式和扫描方式与 composables/
目录相同。