This repository was archived by the owner on May 12, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ <template functional>
2+ <div class =" anyone" >
3+ <h3 >This route is public without any user access verification.</h3 >
4+ <p >
5+ Current route is
6+ <strong >{{ parent.$route.path }}</strong >
7+ </p >
8+ </div >
9+ </template >
10+
11+ <script >
12+ export default {
13+ name: ' PublicAnyone'
14+ }
15+ </script >
16+
17+ <style lang="sass" scoped>
18+ .anyone
19+ + flex-center
20+ height : 100%
21+ </style >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default [
44 'pages/Home' ,
55 'pages/Admin/Dashboard' ,
66 'pages/Admin/Table' ,
7- 'pages/Common/User ' ,
7+ 'pages/Public/Anyone ' ,
88 'pages/Login' ,
99 'pages/Error/NotFound' ,
1010 'pages/Error/Unauthorized' ,
Original file line number Diff line number Diff line change @@ -66,18 +66,18 @@ export default [
6666 ]
6767 } ,
6868 {
69- path : '/common ' ,
69+ path : '/public ' ,
7070 component : plainExport ,
7171 meta : {
72- title : 'Common ' ,
72+ title : 'Public ' ,
7373 icon : 'el-icon-s-promotion'
7474 } ,
7575 children : [
7676 {
77- path : 'user ' ,
78- component : constantComponents . pagesCommonUser ,
77+ path : 'anyone ' ,
78+ component : constantComponents . pagesPublicAnyone ,
7979 meta : {
80- title : 'User '
80+ title : 'Anyone '
8181 }
8282 }
8383 ]
You can’t perform that action at this time.
0 commit comments