当前位置:   article > 正文

vue3项目实战(三)---页面布局设计_vue3 页面

vue3 页面

一、页面文件夹设计

在这里插入图片描述

1.1 styless 新建 global.css variable.scss 两个文件

global.css 初始化一些样式 variable.scss目前内容为空
在这里插入图片描述
这里使用网上比较全的reset样式

/* 全局样式表 */


*,
*:after,
*:before {
    box-sizing: border-box;

    outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font     : inherit;
    font-size: 100%;

    margin : 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;

    &:before,
    &:after {
        content: '';
        content: none;
    }
}

sub,
sup {
    font-size  : 75%;
    line-height: 0;

    position: relative;

    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

table {
    border-spacing : 0;
    border-collapse: collapse;
}

input,
textarea,
button {
    font-family: inhert;
    font-size  : inherit;

    color: inherit;
}

select {
    text-indent  : .01px;
    text-overflow: '';

    border       : 0;
    border-radius: 0;

    -webkit-appearance: none;
    -moz-appearance   : none;
    appearance        : none;
}

select::-ms-expand {
    display: none;
}

code,
pre {
    font-family: monospace, monospace;
    font-size  : 1em;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190

1.2 在main.ts引入

1.2.1 在main.ts引入 样式表 和路由设置
在这里插入图片描述1.2.2 vite.config.ts 添加对css全局变量文件的配置
在这里插入图片描述

1.3 router新建index.ts 和modules 文件夹,modules暂时只新建一个login.ts

1.3.1 index.ts
import {createRouter, createWebHashHistory,RouteRecordRaw} from "vue-router"
import Home from '@/views/layout/index.vue'
import User from "@/views/user/User.vue"
import System from '@/views/system/System.vue'
// 引入 login.ts
import LoginRouter from '@/router/modules/login.ts'

//RouteRecordRaw 内置的接口类型
const routes: Array<RouteRecordRaw> = [
    ... LoginRouter,
    {
        path:'/',
        redirect:'/home'
    },
    {
        path:'/home',
        name: "首页",
        component:Home,
        children:[
            {
                path:'/user',
                name: "用户管理",
                component:User
            },
            {
                path:'/sys',
                name: "系统",
                component:System
            },
        ]
    },
]

const router = createRouter({
    history: createWebHashHistory(),
    routes
})

// 导出路由
export default  router

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

login.ts

import Login from '@/views/login/Login.vue'
import {RouteRecordRaw} from "vue-router";
//RouteRecordRaw 内置的接口类型
const loginView: Array<RouteRecordRaw> = [
    {
        path: '/login',
        name:'登录页',
        component: Login,
        meta: {
            title: '登录页'
        }
    }
]
export default loginView;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

1.4 login文件夹、system文件夹、user文件夹、layout下新建初始化vue文件

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

1.5 启动项目、访问layout页面

在这里插入图片描述

二、layout页面布局

2.1 基础布局
http://element-plus.org/zh-CN/component/container.html 在element plus官网选择适合的布局
在这里插入图片描述
在layout文件夹下的index.vue 把布局代码复制进去,并自己调整一下样式测试效果

<template>

  <div class="common-layout">
    <el-container>
      <el-aside class="layout-menu">Aside</el-aside>
      <el-container>
        <el-header class="layout-header">Header</el-header>
        <el-main class="layout-main">Main</el-main>
      </el-container>
    </el-container>
  </div>

</template>
<script setup lang="ts">

</script>

<style scoped lang="scss">

.common-layout{
  .layout-menu{
    color: white;
    border-right: 1px solid #E4E7ED;
    width: 260px ;
    height: 100vh;
    background-color:#001529 ;
  }
  .layout-header{
    color: white;
    height: 50px;
    background-color: cadetblue ;
  }
  .layout-main{
    color: white;
    height: 50px;
    background-color: cornflowerblue ;
  }

}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/558426
推荐阅读