zoukankan      html  css  js  c++  java
  • 040——VUE中组件之组件间的数据参props的使用实例操作

    <!DOCTYPE html>
    <html lang="en">
    
    	<head>
    		<meta charset="UTF-8">
    		<title>组件之组件间的数据参props的使用实例操作</title>
    		<script src="vue.js"></script>
    	</head>
    
    	<body>
    		<div id="hdcms">
    			<hd-news hd="hdphp" cms="cms培訓" :show-del-button="false" :news="news"></hd-news >
    		</div>
    		<script typeof="text/x-template" id="hdNews">
    			<div>
    				{{hd}}--{{showDelButton}}
    				<div v-for="(v,k) in news">
    					{{v.title}}
    					<button v-if="showDelButton">刪除</button>
    				</div>
    			</div>
    		</script>
    		<script>
    			var hdNews = {
    				template: "#hdNews",
    				props: ['hd','cms','showDelButton','news'],
    				data() {
    					return {};
    				}
    			};
    			new Vue({
    				el: "#hdcms", //根组件,其他的就是子组件
    				//定义局部组件:
    				components: {
    					hdNews
    				},
    				data: {
    					news:[
    							{title:'hdcms'},
    							{title:'hdphp'},
    							{title:'hdphpHtml'}
    						]
    				}
    			});
    		</script>
    
    	</body>
    
    </html>
    

      

  • 相关阅读:
    用sed删除空行
    烂泥:php5.6源码安装及php-fpm配置
    linux系统vsftpd登陆慢卡怎么办
    Linux Vsftpd 连接超时解决方法
    linux中shell截取字符串方法总结
    运算符
    数据类型
    is null 和=null的区别
    DML
    DDL
  • 原文地址:https://www.cnblogs.com/yiweiyihang/p/8202777.html
Copyright © 2011-2022 走看看