<script>
export default {
onCreate() {
console.log("app created")
},
onDestroy() {
console.log("app destroyed")
}
}
</script>
<style>
.pl-60 {
padding-left: 60px;
}
.mr-10 {
margin-right: 10px;
}
.mr-60 {
margin-right: 60px;
}
.mt-4 {
margin-top: 4px;
}
.list-item {
display: list-item;
}
.bg-black {
background-color: rgba(0, 0, 0, 1);
}
.fs-36 {
font-size: 36px;
}
.h-30 {
height: 30px;
}
.h-full {
height: 100%;
}
.w-30 {
width: 30px;
}
.w-full {
width: 100%;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
</style>