@asd20/ui 3.2.993 → 3.2.994

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.993",
8
+ "version": "3.2.994",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
package/src/App.vue CHANGED
@@ -6,7 +6,7 @@
6
6
  </template>
7
7
 
8
8
  <script>
9
- import './design/index.scss'
9
+ // import './design/index.scss'
10
10
  import { get, sync } from 'vuex-pathify'
11
11
 
12
12
  export default {
package/src/router.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import Vue from 'vue'
2
2
  import Router from 'vue-router'
3
- import DistrictHome from './components/pages/DistrictHome.vue'
4
- import store from './store'
3
+ // import DistrictHome from './components/pages/DistrictHome.vue'
4
+ // import store from './store'
5
5
 
6
6
  Vue.use(Router)
7
7
 
@@ -9,27 +9,27 @@ export default new Router({
9
9
  mode: 'history',
10
10
  base: process.env.BASE_URL,
11
11
  routes: [
12
- {
13
- path: '/',
14
- component: DistrictHome,
15
- },
16
- {
17
- path: '/enroll',
18
- component: () => import('./components/pages/Enroll'),
19
- },
12
+ // {
13
+ // path: '/',
14
+ // component: DistrictHome,
15
+ // },
16
+ // {
17
+ // path: '/enroll',
18
+ // component: () => import('./components/pages/Enroll'),
19
+ // },
20
20
 
21
- {
22
- path: '/schools',
23
- beforeEnter: (to, from, next) => {
24
- store.dispatch('setSchoolDirectoryOpen', true)
25
- next(from)
26
- },
27
- },
28
- {
29
- path: '/preview/:pageId',
30
- name: 'preview',
31
- component: () => import('./components/pages/Preview'),
32
- meta: { requiresAuth: false },
33
- },
21
+ // {
22
+ // path: '/schools',
23
+ // beforeEnter: (to, from, next) => {
24
+ // store.dispatch('setSchoolDirectoryOpen', true)
25
+ // next(from)
26
+ // },
27
+ // },
28
+ // {
29
+ // path: '/preview/:pageId',
30
+ // name: 'preview',
31
+ // component: () => import('./components/pages/Preview'),
32
+ // meta: { requiresAuth: false },
33
+ // },
34
34
  ],
35
- })
35
+ })