WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2023-12-02 c0f7df134cb34328a240be1f792c85cda7250f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * CHomeNav
 * @author Tevin
 */
 
<template>
    <view :class="['c-home-nav', 'col-'+layout]">
        <slot />
    </view>
</template>
 
<script>
import Taro from '@tarojs/taro';
import './cHomeNav.scss';
 
export default {
    name: 'CHomeNav',
    props: {
        // 排版方式,two/three
        layout: {
            type: String,
            default: 'two',
        },
    },
    methods: {},
};
</script>