blob: a62a7bf330fd5cc6983118c12add0bc78d2ebfeb [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!-- Created by Tw93 on 17/07/31. -->
<template>
<div class="wxc-demo">
<scroller class="scroller">
<title title="wxc-tag"></title>
<category title="默认使用"></category>
<regular></regular>
<category title="文字标签配置"></category>
<advance></advance>
<category title="特殊标签配置"></category>
<special-advance></special-advance>
<category title="图片标签配置"></category>
<image-advance></image-advance>
</scroller>
</div>
</template>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #ffffff;
}
.scroller {
flex: 1;
}
</style>
<script>
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import Regular from './regular.vue';
import Advance from './advance.vue';
import ImageAdvance from './image-advance.vue';
import SpecialAdvance from './special-advance.vue';
import { setTitle } from '../_mods/set-nav';
export default {
components: { Title, Category, Regular, Advance, ImageAdvance, SpecialAdvance },
created () {
setTitle('Tag');
}
}
</script>