34 lines
No EOL
527 B
Vue
34 lines
No EOL
527 B
Vue
<template>
|
|
<Row>
|
|
<i-col span="4">
|
|
我在左边
|
|
</i-col>
|
|
<i-col span="20">
|
|
我在右边
|
|
</i-col>
|
|
</Row>
|
|
</template>
|
|
<script>
|
|
import { Row, Col } from 'iview';
|
|
|
|
export default {
|
|
components: {
|
|
Row,
|
|
iCol: Col
|
|
},
|
|
props: {
|
|
|
|
},
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script> |