(二十三)VueCli3.0全栈——设置首页和个人信息

2019-07-11  本文已影响0人  彼得朱

1、首页

(1)client/src/views里面新建Home.vue

<template>
  <div class="home">
    <div class="container">
      <h1 class="title">购课在线</h1>
      <p class="lead">专注于线上教育,用心做课程,用心做服务!</p>
    </div>
  </div>
</template>

<script>
export default {};
</script>

<style scoped>
.home {
  width: 100%;
  height: 100%;
  background: url(../assets/showcase.jpg) no-repeat;
  background-size: 100% 100%;
}
.container {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: white;
}
</style>

(2)给Home.vue设置路径

(3)client/src/views/index.vue里面引入并使用

<template>
    <div class="index">
        <HeadNav></HeadNav>
        <router-view></router-view>
    </div>
</template>

<script>
import HeadNav from '../components/HeadNav'
export default {
    name:'index',
    components: {
        HeadNav,
    }
}
</script>

<style>
.index{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

</style>

其中:<router-view></router-view>就是使用的Home.vue模块

效果图:

首页效果图

2、个人信息

个人信息效果图
上一篇 下一篇

猜你喜欢

热点阅读