pug.compile() will compile the Pug source code into a JavaScript function that takes a data object (called “locals”) as an argument.
Getting Started – Pug https://pugjs.org/api/getting-started.html
GitHub - Tencent/wepy: 小程序组件化开发框架 https://github.com/Tencent/wepy
<template lang="pug">
view(class='container')
view(class='userinfo' @tap='tap')
mycom(:prop.sync='myprop' @fn.user='myevent')
text {{now}}
</template> 多会企业版 - 专属线下活动平台 https://www.duohui.cn/enterprise#features Attributes – Pug https://pugjs.org/language/attributes.html
Here are some alternatives you can use to include variables in your attribute:
Simply write the attribute in JavaScript:
- var url = 'pug-test.html';
a(href='/' + url) Link
|
|
- url = 'https://example.com/'
a(href=url) Another link
<a href="/pug-test.html">Link</a>
<a href="https://example.com/">Another link</a>
If your JavaScript runtime supports ES2015 template strings (including Node.js/io.js 1.0.0 and later), you can also use its syntax to simplify your attributes:
- var btnType = 'info'
- var btnSize = 'lg'
button(type='button' class='btn btn-' + btnType + ' btn-' + btnSize)
|
|
button(type='button' class=`btn btn-${btnType} btStyle Attributes
The
styleattribute can be a string, like any normal attribute; but it can also be an object, which is handy when styles are generated by JavaScript.a(style={color: 'red', background: 'green'})<a style="color:red;background:green;"></a>
pug.compile() will compile the Pug source code into a JavaScript function that takes a data object (called “locals”) as an argument.的更多相关文章
- How to compile and install Snort from source code on Ubuntu
		
http://www.tuicool.com/articles/v6j2Ab Snort is by far the most popular open-source network intrusio ...
 - XML.ObjTree -- XML source code from/to JavaScript object like E4X
		
转载于:http://www.kawa.net/works/js/xml/objtree-try-e.html // ========================================= ...
 - How to Build MySQL from Source Code on Windows  &   compile MySQL on win7+vs2010
		
Not counting obtaining the source code, and once you have the prerequisites satisfied, [Windows] use ...
 - How to compile and install Linux Kernel 5.1.2 from source code
		
How to compile and install Linux Kernel 5.1.2 from source code Compiling a custom kernel has its adv ...
 - Indenting source code
		
Artistic Style 1.15.3 A Free , Fast and Small Automatic Formatterfor C , C++ , C# , Java Source Code ...
 - [转]Native Java Bytecode Debugging without Source Code
		
link from:http://www.crowdstrike.com/blog/native-java-bytecode-debugging-without-source-code/index.h ...
 - UI5 Source code map机制的细节介绍
		
在我的博客A debugging issue caused by source code mapping里我介绍了在我做SAP C4C开发时遇到的一个曾经困扰我很久的问题,最后结论是这个问题由于Jav ...
 - Tips for newbie to read source code
		
This post is first posted on my WeChat public account: GeekArtT Reading source code is always one bi ...
 - 编程等宽字体Source Code Pro(转)
		
Source Code Pro - 最佳的免费编程字体之一!来自 Adobe 公司的开源等宽字体下载 每一位程序员都有一套自己喜爱的代码编辑器与编程字体,譬如我们之前就推荐过一款"神 ...
 
随机推荐
- jquery的onclick(this)方法
			
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
 - unity, access standard shared emission by script
			
unity 5.1.1f1 personal 用下面方法在脚本中设置standard shader的emssion: gameObject.GetComponent<MeshRenderer&g ...
 - Myeclipse10安装git 完美解决-费元星
			
1. 拥有自己的github版本库 这年头,不在GitHub上弄几个项目都不好意思跟人家打招呼. 首先,进入GitHub注册账号,话说人家这页面做的那叫一个舒服啊. 然后,登陆并创建自己的版本库(Re ...
 - MVC页面跳转,路径重复的问题
			
window.location.replace("../Home/xxx") 这是js路径跳转的示范,如果普通超链接也一样 前面加一个../
 - 调试JDK1.8源码的方法
			
背景 在学习JDK源码的时候,免不了需要调试JDK的源码. 比如:想理解ConcurrentHashMap的put(K k, V v)方法,JDK自带的rt.jar文件是支持断点调试,但是却看不到变量 ...
 - [elk]logstash的最佳实战-项目实战
			
重点参考: http://blog.csdn.net/qq1032355091/article/details/52953837 不得不说这是一个伟大的项目实战,是正式踏入logstash门槛的捷径 ...
 - Pedometer_forAndroid
			
https://github.com/Nicky213Zhang/Pedometer_forAndroid 自行封装了一个计步器控件,采用:计步传感器Sensor.TYPE_STEP_COUNTER计 ...
 - deepin linux下markdown实时预览
			
# deepin linux下markdown实时预览 ## 参考文章------------------------------ [vim安装markdown插件](http://www.jians ...
 - hive export import命令
			
EXPORT TABLE stu_p TO 导入表(必须明白导出表,导出表是将表的元数据,数据导出到hdfs上.)讲一个导出的表导入到数据库中,这个hdfs_path 是一个导出表的文件夹 impor ...
 - 用position: fixed;做个遮罩,怎么能让后面的View禁止滑动
			
用一个view标签把代码包起来,当模态层出来时给它添加height:100%;position: absolute;overflow: hidden;.模态框消失时去掉样式