commit | author | age
|
bf6fbe
|
1 |
<template> |
L |
2 |
<div class="blog-left-side-portion fadeInLeft"> |
|
3 |
<div class="blog-cell-main-container "> |
|
4 |
<box1></box1> |
|
5 |
</div> |
|
6 |
<div class="blog-cell-main-container "> |
|
7 |
<box2></box2> |
|
8 |
</div> |
|
9 |
<div class="blog-cell-main-container "> |
|
10 |
<box3></box3> |
|
11 |
</div> |
|
12 |
</div> |
|
13 |
</template> |
|
14 |
|
|
15 |
<script> |
|
16 |
import box1 from "./box1.vue" |
|
17 |
import box2 from "./box2.vue" |
|
18 |
import box3 from "./box3.vue" |
|
19 |
export default { |
|
20 |
components: { |
|
21 |
box1, |
|
22 |
box2, |
|
23 |
box3, |
|
24 |
}, |
|
25 |
data() { |
|
26 |
return {} |
|
27 |
} |
|
28 |
} |
|
29 |
</script> |
|
30 |
|
|
31 |
</script> |
|
32 |
<style lang="less"> |
|
33 |
</style> |