testFingerPrints.ts 519 B

12345678910111213141516171819
  1. // 最简代码,也就是这些字段必须有
  2. export default {
  3. path: "/testFingerPrints",
  4. meta: {
  5. title: "测试信息获取",
  6. showLink: false,
  7. },
  8. children: [
  9. {
  10. path: "/testFingerPrints/information",
  11. name: "Information",
  12. component: () => import("@/views/testFingerPrints/information/index.vue"),
  13. meta: {
  14. title: "fingerprints,浏览器指纹",
  15. showParent: true
  16. }
  17. },
  18. ]
  19. };