<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.min.css">
<title>自定义组件</title>
<style>
.icon-full {
font-size: 18px;
color: yellow;
}
.icon-none {
font-size: 18px;
color: red;
}
.star-container {
display: inline-block;
color: yellow;
font-size: 18px;
}
.icon-o {
color: #ccc;
}
</style>
</head>
<body>
<div class="box">
<i class="fa fa-star icon-full"></i>
<i class="fa fa-star-o icon-none"></i>
<ul>
<li>
<span>送餐准时</span>
<my-star :num="starList[0]"></my-star>
</li>
<li>
<span>服务态度</span>
<my-star :num="starList[1]"></my-star>
</li>
<li>
<span>饭菜口味</span>
<my-star :num="starList[2]"></my-star>
</li>
<li>
<span>口味包装</span>
<my-star :num="starList[3]"></my-star>
</li>
</ul>
</div>
<script src="vue.js"></script>
<script>
Vue.component('my-star', {
template: "<div class='star-container'><i v-for='item in new Array(num)' class='fa fa-star'></i><i v-for='item in new Array(5-num)' class='fa fa-star-o icon-o'></i></div>",
props: ['num']
})
new Vue({
el: ".box",
data: {
starList: [4, 3, 2, 1],
text: "my text content"
}
})
</script>
</body>
</html>
vue商品评价
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在写商品页面product.vue之前,我应该思考一下,商品页面要实现那些功能,该不如布局? 要实现的功能 1、所...
- 目前完成的功能:登录注册,商品分类的路由 获取页面数据的思路: 一、定义api 打开api.js 二、在produ...
- product.vue productlist.vue productcontent.vue 效果 总结 样式的写...
- 思路 1、写api 2、写详情页组件和路由 router---->index.js productcontent....