atui实现table表格点击效果代码
代码语言:html
所属分类:表格
代码描述:atui实现table表格点击效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel='stylesheet' href='//repo.bfw.wiki/bfwrepo/js/atui/greater-blue.css'> </head> <body> <div id="app"> <div> <v-table :data-source="dataSource" :columns="columns"> <template scope="props" slot="age"> <span>年龄:{{props.record.age}}</span> </template> <template scope="props" slot="operation"> <v-button @click.native="onOperate(props.record)">操作</v-button> </template> </v-table> </div> </div> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue@2.6.1-dev.js"></script> <script src='//repo.bfw.wiki/bfwrepo/js/atui/atui.js'></script> <script> // 全局注册atui组件 Vue.use(atui); // table配置 const dataSource = [{ key: '1', name: '胡彦斌', age: 32, address: '西湖区湖底公园1号' }, { key: '2', name: '胡彦祖', age: 42, address: '西湖区湖底公园1号' }, .........完整代码请登录后点击上方下载按钮下载查看
网友评论0