27 lines
335 B
Vue
27 lines
335 B
Vue
<template>
|
|
<div class="left-side"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "LeftSide",
|
|
props: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
// import
|
|
|
|
.left-side {
|
|
// background: rgba(243, 54, 145, 0.166);
|
|
height: 4320px;
|
|
width: 3816px;
|
|
}
|
|
</style>
|