Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f3a623b

Browse filesBrowse files
committed
完成 products 页面的搭建
1 parent 6ffa4cb commit f3a623b
Copy full SHA for f3a623b

File tree

1 file changed

+38
-0
lines changed
Filter options

1 file changed

+38
-0
lines changed

‎src/pages/products.vue

Copy file name to clipboard
+38Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<template>
2+
<div id="__wrapper">
3+
<div class="products-content">
4+
<keep-alive>
5+
<transition name="slide-right">
6+
<router-view></router-view>
7+
</transition>
8+
</keep-alive>
9+
</div>
10+
</div>
11+
</template>
12+
13+
<script>
14+
import productsDetailInfo from './productsDetailInfo'
15+
import productsHome from './productsHome'
16+
import productsPreview from './productsPreview'
17+
18+
export default {
19+
components: {
20+
productsDetailInfo,
21+
productsHome,
22+
productsPreview
23+
},
24+
created() {
25+
},
26+
data() {
27+
return {
28+
}
29+
},
30+
methods: {
31+
}
32+
}
33+
</script>
34+
35+
<style>
36+
@import '../style/style.css';
37+
@import '../style/bootstrap-flat.min.css';
38+
</style>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.