utils

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

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

用法

方法 1: 使用具名导出

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

方法 2: 使用默认导出

utils/random-entry.ts 或 utils/randomEntry.ts
// 它将作为 randomEntry()(文件名不带扩展名的驼峰式命名)可用
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>
Read more in Docs > Guide > Concepts > Auto Imports.
Read and edit a live example in Docs > Examples > Features > Auto Imports.
utils/ 自动导入的工作方式和扫描方式与 composables/ 目录相同。
这些工具函数仅在 Vue 应用程序部分可用。:br 只有 server/utilsserver/ 目录中自动导入。