-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
023c6e4
commit 6d7da9b
Showing
3 changed files
with
36 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Alteration from './Alteration.vue'; | ||
import NewConstruction from './NewConstruction.vue'; | ||
import SalePrices from './SalePrices.vue'; | ||
import Zoning from './Zoning.vue'; | ||
import Layers from './Layers.vue'; | ||
|
||
export default [{ | ||
title: 'Sale Prices', | ||
component: SalePrices, | ||
route: 'sales', | ||
}, { | ||
title: 'Zoning', | ||
component: Zoning, | ||
route: 'zoning', | ||
}, { | ||
title: 'New Construction Permits', | ||
component: NewConstruction, | ||
route: 'construction', | ||
}, { | ||
title: 'Alteration Permits', | ||
component: Alteration, | ||
route: 'alteration', | ||
}, { | ||
title: 'Planning Overlays', | ||
component: Layers, | ||
route: 'layers', | ||
}]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters