We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ffa4cb commit f3a623bCopy full SHA for f3a623b
src/pages/products.vue
@@ -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