testschedule/scripts/gen/template.ux
2025-04-26 14:01:41 +08:00

28 lines
445 B
XML

<template>
<div class="wrapper">
<text class="title">{{ title }}</text>
</div>
</template>
<script>
export default {
data: {
title: '欢迎体验多终端应用开发'
},
onInit() {}
}
</script>
<style lang="scss">
@import './../../assets/styles/style.scss';
.wrapper {
@include flex-box-mixins(column, center, center);
.title {
font-size: 8 * $size-factor;
text-align: center;
color: $black;
}
}
</style>