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 and edit a live example in Docs > 4 X > Examples > Features > Auto Imports.
app/utils/
的自动导入工作方式和扫描方式与 app/composables/
目录完全相同。