vue-router案例

本文介绍了一个使用Vue和Vue-router构建的后台管理系统案例。系统包括用户管理、权限管理等功能,通过路由实现了页面间的导航与数据传递。文章详细展示了如何定义组件、配置路由规则以及实现前后端分离的布局。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>基于vue-router的案例</title>
    <style type="text/css">
      html,
      body,
      #app {
        margin: 0;
        padding: 0px;
        height: 100%;
      }
      .header {
        height: 50px;
        background-color: #545c64;
        line-height: 50px;
        text-align: center;
        font-size: 24px;
        color: #fff;
      }
      .footer {
        height: 40px;
        line-height: 40px;
        background-color: #888;
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        color: #fff;
      }
      .main {
        display: flex;
        position: absolute;
        top: 50px;
        bottom: 40px;
        width: 100%;
      }
      .content {
        flex: 1;
        text-align: center;
        height: 100%;
      }
      .left {
        flex: 0 0 20%;
        background-color: #545c64;
      }
      .left a {
        color: white;
        text-decoration: none;
      }
      .right {
        margin: 5px;
      }
      .btns {
        width: 100%;
        height: 35px;
        line-height: 35px;
        background-color: #f5f5f5;
        text-align: left;
        padding-left: 10px;
        box-sizing: border-box;
      }
      button {
        height: 30px;
        background-color: #ecf5ff;
        border: 1px solid lightskyblue;
        font-size: 12px;
        padding: 0 20px;
      }
      .main-content {
        margin-top: 10px;
      }
      ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      ul li {
        height: 45px;
        line-height: 45px;
        background-color: #a0a0a0;
        color: #fff;
        cursor: pointer;
        border-bottom: 1px solid #fff;
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      td,
      th {
        border: 1px solid #eee;
        line-height: 35px;
        font-size: 12px;
      }

      th {
        background-color: #ddd;
      }
    </style>
    <script src="js/vue.js"></script>
    <script src="js/vue-router_3.0.2.js"></script>
  </head>
  <body>
    <!-- 要被vue实例控制的区域 -->
    <div id="app">
      <!-- 路由占位符 -->
      <router-view></router-view>
    </div>
   
    <script>
//定义app跟组件
const App = {
  template: `
     <div>
        <!-- 头部区域 -->
        <header class="header">传智后台管理系统</header>
        <!-- 中间主体区域 -->
        <div class="main">
          <!-- 左侧菜单栏 -->
          <div class="content left">
            <ul>
              <li><router-link to="/users">用户管理</router-link></li>
              <li>权限管理</li>
              <li>商品管理</li>
              <li>订单管理</li>
              <li>系统设置</li>
            </ul>
          </div>
          <!-- 右侧内容区域 -->
          <div class="content right"><div class="main-content">
            <router-view></router-view>
          </div></div>
        </div>
        <!-- 尾部区域 -->
        <footer class="footer">版权信息</footer>
      </div>
  `
}

  const Users = {
    data() {
      return {
        userlist: [
          {id: 1, name: '张三', age: 10},
          {id: 2, name: '李四', age: 12},
          {id: 3, name: '王五', age: 13},
          {id: 4, name: '张三2', age: 40}
        ]
      }
    },
    methods: {
      goDetail(id) {
        console.log(id);
        this.$router.push('/userinfo/' + id)
      }
    },
    template: `<div>
        <h3>用户管理区域</h3>
        <table>
          <thead>
            <tr><th>编号</th><th>姓名</th><th>年龄</th><th>操作</th></tr>
          </thead>
          <tbody>
            <tr v-for="item in userlist" :key="item.id">
            <td>{{item.id}}</td>
            <td>{{item.name}}</td>
            <td>{{item.age}}</td>
            <td>
              <a href="javascript:;" @click="goDetail(item.id)">详情</a>
            </td>
            </tr>
          </tbody>
        </table>
    </div>`
  }

  const UserInfo = {
    props: ['id'],
    template: `<div>
      <h5>用户详情页Id为: {{id}}</h5>
      <button @click="goback()">后退</button>
    </div>`,
    methods: {
      goback() {
        //实现后退功能
        this.$router.go(-1);
      }
    }
  }

      // 创建一个路由对象
      const router = new VueRouter({
        routes: [
        //父路由规则定义了一个根组件
          {
            path: '/',
           component: App,
           //重定向
           redirect: '/users',
          //子组件
           children: [
            {path: '/users', component: Users},
            {path: '/userinfo/:id', component: UserInfo, props: true}
          ]}
        ]
      })

      const vm = new Vue({
        el: '#app',
        router
      })
    </script>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值