You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<template>
|
|
<!-- 模块容器 div -->
|
|
<div class="mod-home">
|
|
<!-- 欢迎标题 -->
|
|
<h3>欢迎使用微信管理系统</h3>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
/* 样式部分 */
|
|
.mod-home {
|
|
/* 设置行高,增加文本的可读性 */
|
|
line-height: 2.5;
|
|
/* 使文本水平居中对齐 */
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|