2017-03-30 16:26:44 +08:00
|
|
|
<style>
|
2017-09-01 14:05:27 +08:00
|
|
|
/*.ivu-col div{*/
|
|
|
|
/*background: rgba(0,153,229,.7);*/
|
|
|
|
/*}*/
|
2017-03-30 16:26:44 +08:00
|
|
|
</style>
|
2017-03-01 14:28:44 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
2017-08-24 15:06:54 +08:00
|
|
|
<Row :gutter="64">
|
|
|
|
<Card>
|
|
|
|
<i-col span="6">
|
|
|
|
<div>col-6</div>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="6">
|
|
|
|
<div>col-6</div>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="6">
|
|
|
|
<div>col-6</div>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="6">
|
|
|
|
<div>col-6</div>
|
|
|
|
</i-col>
|
|
|
|
</Card>
|
2017-03-01 14:28:44 +08:00
|
|
|
</Row>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2017-03-30 16:26:44 +08:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
n: 2
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
add () {
|
|
|
|
this.n++;
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 14:28:44 +08:00
|
|
|
}
|
|
|
|
</script>
|