| 12345678910111213141516171819 |
- // 最简代码,也就是这些字段必须有
- export default {
- path: "/testFingerPrints",
- meta: {
- title: "测试信息获取",
- showLink: false,
- },
- children: [
- {
- path: "/testFingerPrints/information",
- name: "Information",
- component: () => import("@/views/testFingerPrints/information/index.vue"),
- meta: {
- title: "fingerprints,浏览器指纹",
- showParent: true
- }
- },
- ]
- };
|