list.vue
678 Bytes
<template>
<LayoutApp>
<Tabs>
<template slot="panes">
<TabPane label="有货优惠券" :disable="true">
<YohoPage></YohoPage>
</TabPane>
<TabPane label="UFO优惠券" :disable="true">
<UfoPage></UfoPage>
</TabPane>
</template>
</Tabs>
</LayoutApp>
</template>
<script>
import Tabs from './components/tabs';
import Layout from './components/layout';
import YohoPage from './yoho';
import UfoPage from './ufo';
export default {
name: 'ListPage',
components: {
Tabs,
TabPane: Tabs.Pane,
YohoPage,
UfoPage,
LayoutApp: Layout
}
};
</script>
<style lang="scss" scoped>
</style>