项目第一天左侧菜单栏的渲染

1.封装请求地址

export const getMenus = () => axios.get('/menus').then(res => res.data)

2.引入请求地址

import {getMenus} from '@/api'

3.在return中定义一个空的数组

 menuList: []

4.发送数据请求

created () {
    getMenus()
      .then(res => {
        console.log(res)
        this.menuList = res.data
      })
  }

5.渲染

 

你可能感兴趣的:(项目第一天左侧菜单栏的渲染)