utils

在整个应用中使用 utils/ 目录来自动导入你的工具函数。

app/utils/ 目录 的主要目的是允许对你的 Vue 组合函数和其他自动导入的工具函数进行语义区分。

使用

方法 1: 使用命名导出

utils/index.ts
export const { format: formatNumber } = Intl.NumberFormat('en-GB', {
  notation: 'compact',
  maximumFractionDigits: 1,
})

方法 2: 使用默认导出

utils/random-entry.ts or utils/randomEntry.ts
// 它将作为 randomEntry()(文件名的小驼峰形式,不带扩展名)可用
export default function (arr: Array<any>) {
  return arr[Math.floor(Math.random() * arr.length)]
}

你现在可以在 .js.ts.vue 文件中使用自动导入的工具函数

app/app.vue
<template>
  <p>{{ formatNumber(1234) }}</p>
</template>
Docs > 4 X > Guide > Concepts > Auto Imports 中查看详情
Read and edit a live example in Docs > 4 X > Examples > Features > Auto Imports.
app/utils/ 的自动导入和扫描方式与 app/composables/ 目录完全相同。
这些工具仅在应用的 Vue 部分可用。
只有 server/utils 会在 server/ 目录中自动导入。