YAML

Parcel 支持使用 @parcel/transformer-yaml 插件从 JavaScript 导入 YAML 文件。当检测到 .yaml 文件时,它将自动安装到你的项目中。

¥Parcel supports importing YAML files from JavaScript using the @parcel/transformer-yaml plugin. When a .yaml file is detected, it will be installed into your project automatically.

用法示例

#

¥Example usage

app.js:
import data from './data.yaml';
console.log(data.hello[0]);
// => "world"
data.yaml:
hello:
- world
- computer
Parcel 中文网 - 粤ICP备13048890号