npm i --save nativescript-dev-jade
- 版本:0.0.6
- GitHub: https://github.com/NativeScript/nativescript-dev-jade
- NPM: https://npmjs.net.cn/package/nativescript-dev-jade
- 下载次数
- 昨天:0
- 上周:0
- 上个月:0
为 NativeScript 项目提供 Jade 支持。
如何使用
$ tns install jade
上述命令安装此模块并安装必要的钩子。当项目准备构建时,会对“app”文件夹内所有的 .jade
文件进行 Jade 处理。
示例
Page(xmlns="http://schemas.nativescript.org/tns.xsd")
StackLayout
Label(text="This is Label")
Button(text="This is Button")
结果
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<StackLayout>
<Label text="This is Label"></Label>
<Button text="This is Button"></Button>
</StackLayout>
</Page>
更多信息请访问 http://jade-lang.com/。