> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kasoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:includec

> 如果指定文件存在缓存版本，则包含其缓存的 ArcScript；否则解析原始文件。

export const siteNameShort = "知行之桥";

arc:includec 关键字用来包含特定文件的缓存 {siteNameShort}Script（如果缓存中有）。否则，原始的文件将被解析。像其它语言中传统的包含一样，arc:includec 会被 file 参数指定的文件内容所替代。

## 参数

* file：要被包含的文件名称。

## 控制属性

无

## 示例

为一个网站的头部导入缓存的 CSS：

```xml theme={null}
<arc:cache file="www/cache/ui/css/css.css" dependency="~/ui/css/,~/ui/img/"/>
<arc:includec file="~/ui/css/_header.css"/> 
```
