<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/element-ui@1.4.1/lib/index.js"></script>
<div id="app">
<template>
<div v-for ='item in tableData' style='border:1px solid red; height:50px;width:600px;
border-bottom:none;
line-height:50px; padding-left:40px;
'>
<span>{{item.name}}</span> <span>{{item.date}}</span>
</div>
<div style ='border-top:1px solid red;width:640px;'></div>
</template>
</div>
网友评论