flagLeftTop.vue 478 Bytes
<template>
    <div class="flag-left-top-box" v-if="flag">
		<div class="box">
            <img :src="flag" class="flag-img" mode="widthFix" />
		</div>
    </div>
</template>

<script>
    export default {
        data: function () {
            return {

            }
        },
        props: ["flag"]
    }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
    @import './flagLeftTop';
</style>