fes.js/docs/guide/template.md
2022-11-09 17:33:47 +08:00

57 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# HTML 模板
Fes.js 默认模板内容是:
::: tip
fes3.0+ html 模版文件从 `public/index.html` 挪到项目根目录。
:::
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title><%= title %></title>
</head>
<body>
<div id="<%= mountElementId %>"></div>
</body>
</html>
```
## 修改页面标题
```js
// .fes.js
export default {
title: '这是页面标题',
};
```
页面的标题会设置成 `这是页面标题`
## 模板变量
模版中可以使用的变量:
- `NODE_ENV`: Node.js 环境变量
- `FES_ENV`: Fes.js 环境变量
- `BASE_URL`: publicPath
- `.env.**`: 文件中以 `FES_APP_` 开头的变量
举个 🌰
```env
# .env
FES_APP_HELLO_WORLD=hello world
```
```html
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<body>
<div><%= FES_APP_HELLO_WORLD %></div>
</body>
```