mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 17:57:24 +09:00
26 lines
584 B
JavaScript
26 lines
584 B
JavaScript
import CalcList from '../views/CalcList'
|
|
import Verification from '../views/Verification'
|
|
import AdressPopup from '../views/adressPopup'
|
|
|
|
export default [
|
|
{
|
|
path: '/calculate/calcList',
|
|
component: CalcList,
|
|
name: 'calcList',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/calculate/verification',
|
|
component: Verification,
|
|
name: 'verification',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/calculate/adressPopup',
|
|
component: AdressPopup,
|
|
name: 'adressPopup',
|
|
meta: { public: false }
|
|
}
|
|
]
|
|
|