cell-info.vue 902 Bytes
<template>
    <div class="cell-info">
        <p>SKN:{{skn}}</p>
        <p>名称:{{productName}}</p>
        <p>品牌:{{brandName}}</p>
        <p>品类:{{maxName}}/{{middleName}}/{{smallName}}</p>
    </div>
</template>

<script>
    export default {
        name: 'CellInfo',
        props: {
            skn: {
                type: [String, Number]
            },
            productName: {
                type: String
            },
            brandName: {
                type: String
            },
            maxName: {
                type: String
            },
            middleName: {
                type: String
            },
            smallName: {
                type: String
            }
        },
        data() {
            return {
            }
        }
    }
</script>

<style lang="scss" scoped>

    .cell-info {
        text-align: left;
    }

</style>