publish 0.9.9-rc-3

fixed Table width bug when resize window
This commit is contained in:
梁灏 2016-11-30 16:12:10 +08:00
parent 5e7a3b293b
commit 224a3ae539
6 changed files with 44 additions and 23 deletions

View file

@ -1,5 +1,5 @@
<template>
<i-table :columns="columns1" :data="data1"></i-table>
<i-table border :columns="columns1" :data="data1"></i-table>
</template>
<script>
export default {
@ -12,7 +12,9 @@
},
{
title: '年龄',
key: 'age'
key: 'age',
fixed: 'left',
// width: 200
},
{
title: '地址',
@ -44,4 +46,4 @@
}
}
}
</script>
</script>