26 lines
567 B
Vue
26 lines
567 B
Vue
<template>
|
|
<view class="container">
|
|
<view class="title bg-[transparent] text-center text-[#000]">这是一个等待开发的首页</view>
|
|
<view class="title bg-[blue] text-center text-[#fff]">这是一个等待开发的首页</view>
|
|
<view class="description bg-[red]">首页的内容是在线课程</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style>
|
|
.title {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.description {
|
|
font-size: 14px;
|
|
opacity: 0.6;
|
|
margin-bottom: 15px;
|
|
}
|
|
</style>
|