File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import Search from '../views/app/Search.vue';
1414import Settings from '../views/app/Settings.vue' ;
1515import User from '../components/app/users/User.vue' ;
1616import History from '../views/app/History.vue' ;
17+ import Matches from '../views/app/Matches.vue' ;
1718import store from '../store/index' ;
1819
1920Vue . use ( VueRouter ) ;
@@ -126,6 +127,11 @@ const routes = [
126127 component : History ,
127128 beforeEnter : notLoggedInRedirectLogin ,
128129 } ,
130+ {
131+ path : '/matches' ,
132+ component : Matches ,
133+ beforeEnter : notLoggedInRedirectLogin ,
134+ } ,
129135] ;
130136
131137const router = new VueRouter ( {
Original file line number Diff line number Diff line change 1+ <template >
2+ <h1 >test</h1 >
3+ </template >
4+
5+ <script >
6+ </script >
You can’t perform that action at this time.
0 commit comments