utils

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

The main purpose of the app/utils/ directory is to allow a semantic distinction between your Vue composables and other auto-imported utility functions.

使用

方法 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
// 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/app.vue
<template>
  <p>{{ formatNumber(1234) }}</p>
</template>
Read more in 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/ 目录中被自动导入。