iview/test/routers/layout.vue

38 lines
704 B
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
2016-09-15 23:43:50 +08:00
<Card :bordered="true" style="width:300px">
<template slot="title">
<p>放寒假的发货会计师</p>
</template>
<a href="#" slot="extra">More</a>
</Card>
<Card style="width:300px">
<p>hello</p>
<p>hndshf</p>
<h3>jfds</h3>
</Card>
2016-09-09 14:29:19 +08:00
</template>
<script>
2016-09-15 23:43:50 +08:00
import { Row, Col, Card } from 'iview';
2016-09-09 14:29:19 +08:00
export default {
components: {
Row,
2016-09-15 23:43:50 +08:00
iCol: Col,
Card
2016-09-09 14:29:19 +08:00
},
props: {
},
data () {
return {
}
},
computed: {
},
methods: {
}
}
</script>