1 Star 0 Fork 0

常君东/vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
v-bind-style.html 522 Bytes
一键复制 编辑 原始数据 按行查看 历史
常君东 提交于 2020-03-21 11:40 . first commit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }">hello,vue</div>
</div>
<div id="app2">
<div :style="styleObject">hello,vue</div>
</div>
<script>
var vue1 = new Vue({
el: '#app',
data: {
activeColor: 'green',
fontSize: 30
}
})
var vue2 = new Vue({
el: '#app2',
data: {
styleObject: {
color: 'red',
fontSize: '30px'
}
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bingojundong/vue.git
[email protected]:bingojundong/vue.git
bingojundong
vue
vue
master

搜索帮助