mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
24 lines
530 B
JavaScript
24 lines
530 B
JavaScript
const data = [
|
||
{
|
||
title: "vue-admin-beautiful-pro 1.7版本已发布,点我提前体验",
|
||
url: "https://chu1204505056.gitee.io/vue-admin-beautiful-pro/#/index",
|
||
},
|
||
{
|
||
title: "vue-admin-beautiful(antdv) vue3.0版本已发布,点我提前体验",
|
||
url: "https://chu1204505056.gitee.io/vue-admin-beautiful-mini/#/index",
|
||
},
|
||
];
|
||
module.exports = [
|
||
{
|
||
url: "/ad/getList",
|
||
type: "get",
|
||
response() {
|
||
return {
|
||
code: 200,
|
||
msg: "success",
|
||
data,
|
||
};
|
||
},
|
||
},
|
||
];
|