\n\n\n\n","import { render } from \"./NavItem.vue?vue&type=template&id=5e97e7aa\"\nimport script from \"./NavItem.vue?vue&type=script&lang=js\"\nexport * from \"./NavItem.vue?vue&type=script&lang=js\"\nscript.render = render\n\nexport default script","import { render } from \"./Nav.vue?vue&type=template&id=dc094ff0\"\nimport script from \"./Nav.vue?vue&type=script&lang=js\"\nexport * from \"./Nav.vue?vue&type=script&lang=js\"\nscript.render = render\n\nexport default script","import { render } from \"./App.vue?vue&type=template&id=ed2bcb7c\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\nscript.render = render\n\nexport default script","import { createRouter, createWebHistory } from \"vue-router\";\nimport { routes } from \"@/data\";\n\nconst router = createRouter({\n history: createWebHistory(process.env.BASE_URL),\n routes,\n scrollBehavior: function (to, from, savedPosition) {\n if (savedPosition) {\n return savedPosition;\n }\n return { left: 0, top: 0 };\n },\n});\n\nexport default router;\n","import { createApp } from \"vue\";\nimport App from \"./App.vue\";\nimport router from \"./router\";\nimport \"./assets/tailwind.css\";\ncreateApp(App).use(router).mount(\"#app\");\n","module.exports = __webpack_public_path__ + \"img/logo.8f8aad92.svg\";","import { SITE_PATH } from \"@/data\";\n\nexport const getRoutes = (routes) => {\n return routes.map((route) => ({\n path: route.path,\n component: route.component,\n }));\n};\n\nexport const getNavigation = (routes) => {\n const navItems = [];\n for (const route of routes) {\n if (route.hidden) continue;\n const baseRoute = route.path.split(\"/\")[1];\n const indexBaseRoute = navItems.findIndex(\n (item) => item.path === `/${baseRoute}`\n );\n\n if (indexBaseRoute === -1) {\n navItems.push({\n path: `/${baseRoute}`,\n label: route.label,\n dropdownItems: [],\n });\n } else if (!route.path.includes(\":\")) {\n navItems[indexBaseRoute].dropdownItems.push({\n path: route.path,\n label: route.label,\n });\n }\n }\n\n return navItems;\n};\n\nexport const getMedia = (file) => `${SITE_PATH}/media/${file}`;\n","import { getRoutes, getNavigation } from \"@/data/utils\";\r\n\r\nexport const SITE_PATH = \"Project\";\r\n\r\nconst MASTER_ROUTES = [\r\n {\r\n path: \"/\",\r\n label: \"home\",\r\n component: () => import(\"@/views/home\"),\r\n hidden: false,\r\n },\r\n {\r\n path: \"/cars\",\r\n label: \"cars\",\r\n component: () => import(\"@/views/cars\"),\r\n hidden: false,\r\n },\r\n // {\r\n // path: \"/drivers\",\r\n // label: \"drivers\",\r\n // component: () => import(\"@/views/drivers\"),\r\n // hidden: false,\r\n // },\r\n {\r\n path: \"/cars/:id\",\r\n label: \"cars\",\r\n component: () => import(\"@/views/cars/[carId]\"),\r\n hidden: false,\r\n },\r\n {\r\n path: \"/services\",\r\n label: \"services\",\r\n component: () => import(\"@/views/services\"),\r\n hidden: false,\r\n },\r\n {\r\n path: \"/faq\",\r\n label: \"faq\",\r\n component: () => import(\"@/views/faq\"),\r\n hidden: false,\r\n },\r\n {\r\n path: \"/contact\",\r\n label: \"contact\",\r\n component: () => import(\"@/views/contact\"),\r\n hidden: false,\r\n },\r\n];\r\n\r\nexport const routes = getRoutes(MASTER_ROUTES);\r\n\r\nexport const navigation = getNavigation(MASTER_ROUTES);\r\n\r\nconst baseURL = \"/\";\r\nexport const cars = [\r\n {\r\n id: \"mercedes-benz-S580\",\r\n name: \"2022 Mercedes Benz S580\",\r\n label: \"4 Passenger\",\r\n description:\r\n \"Our all new 2022 Mercedes Benz S580 offers our guests unparalleled luxury with state of the art technology. Simply sit back and say “Hey Mercedes turn on my seat massage” and enjoy a relaxing massage. The power reclining heated/AC seats are the lap of luxury.\",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n imgSrc: baseURL + \"cars-img/benz/index.jpg\",\r\n hourly: \"$184.99/h plus GST\",\r\n images: [baseURL + \"cars-img/benz/images/5.jpg\",baseURL + \"cars-img/benz/images/6.jpg\",baseURL + \"cars-img/benz/images/1.jpg\", baseURL + \"cars-img/benz/images/2.jpg\",baseURL + \"cars-img/benz/images/3.jpg\", baseURL + \"cars-img/benz/images/4.jpg\",],\r\n },{\r\n id: \"cadillac-escalade-ESV\",\r\n name: \"2023 Cadillac Escalade ESV Platinum Sport \",\r\n label: \"6 Passenger\",\r\n description:\r\n \"Custom ordered from Cadillac with Night Vision, Fridge/Freezer Centre console, 36 Speaker AKG Reference Audio System, Hyper Cruise and Augmented Reality Navigation. Stream Live TV or Movies on our 4K TVs in all of our vehicles.\",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"$159.99/h plus GST\",\r\n imgSrc: baseURL + \"cars-img/cadillac/index.jpg\",\r\n images: [baseURL + \"cars-img/cadillac/images/1.jpg\", baseURL + \"cars-img/cadillac/images/2.jpg\",baseURL + \"cars-img/cadillac/images/3.jpg\", baseURL + \"cars-img/cadillac/images/4.jpg\",baseURL + \"cars-img/cadillac/images/5.jpg\", baseURL + \"cars-img/cadillac/images/6.jpg\",baseURL + \"cars-img/cadillac/images/7.jpg\", baseURL + \"cars-img/cadillac/images/8.jpg\"],\r\n },\r\n {\r\n id: \"gmc-denali-ultimate\",\r\n name: \"2023 GMC Denali XL Ultimate Edition\",\r\n label: \"6 Passenger\",\r\n description:\r\n \"DriveUs is proud to be the first Vancouver car service to offer this rare truly luxury full size SUV. You will understand exactly what this is called the “Ultimate Edition” the moment you see her. No options were spared and this luxury SUV is as nice as they come. With room for 6 passengers you will not be disappointed booking this for your next event or ride. Rear Infotainment with dual touch screen TV's, Fridge/Freezer, It’s also equipped with the Thinkware 4K U1000 dual camera dash cameras and live GPS tracking \",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"$159.99/h plus GST\",\r\n imgSrc: baseURL + \"cars-img/denali/index.jpg\",\r\n images: [baseURL + \"cars-img/denali/1.jpg\",baseURL + \"cars-img/denali/2.jpg\",baseURL + \"cars-img/denali/3.jpg\"],\r\n },\r\n {\r\n id: \"chevrolet-suburban-rst\",\r\n name: \"2023 Chevrolet Suburban RST\",\r\n label: \"6 Passenger\",\r\n description:\r\n \"Our Duramax Suburban is huge with room for 6 guests and luggage this is great for your next airport transfer or event. It’s equipped with a fridge/freezer to keep the complimentary Fiji Water ice cold. It’s also equipped with the Thinkware 4K U1000 dual camera dash cameras and live GPS tracking. Whether you are heading out for a round of golf or heading to the airport this is a great choice to get you there in style. \",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"$159.99/h plus GST\",\r\n imgSrc: baseURL + \"cars-img/chevrolet/index.jpg\",\r\n images: [baseURL + \"cars-img/chevrolet/1.jpg\", baseURL + \"cars-img/chevrolet/2.jpg\", baseURL + \"cars-img/chevrolet/3.jpg\", baseURL + \"cars-img/chevrolet/4.jpg\", baseURL + \"cars-img/chevrolet/5.jpg\"],\r\n },\r\n {\r\n id: \"mercedes-benz-sprinter\",\r\n name: \"2022 Mercedes Benz Sprinter 12 Passenger Van\",\r\n label: \"12 Passenger\",\r\n description:\r\n \"Our 2022 was delivered new in the summer of 2023. It has room for 11 guests plus the driver. It comes with a built in fridge freezer to keep the complimentary Fiji water ice cold and fast chargers for your cell phones. It also has a built in inverter so you can plug in a laptop or other electrical devices. It comes with dual A/C and heaters for our guests comfort. We also offer high speed 5G Wi-Fi in all our vehicles.\",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"$249.99/h plus GST 2 hours min. Applies Parking at YVR $25.00\",\r\n smallImg: true,\r\n imgSrc: baseURL + \"cars-img/sprinter/index.jpg\",\r\n images: [baseURL + \"cars-img/sprinter/images/1.jpg\", baseURL + \"cars-img/sprinter/images/2.jpg\",baseURL + \"cars-img/sprinter/images/3.jpg\"],\r\n },\r\n {\r\n id: \"cadillac-ct5\",\r\n name: \"2024 Cadillac CT5 V Series\",\r\n label: \"4 Passenger\", description:\r\n 'PREMIUM LUXURY V Series: Navigation† and Bose†Premium Audio Package, Climate Package, Technology Package, Lighting Package, Parking Package, Semi-Aniline leather seats, leather-wrapped horn pad, interior colour Sedona Sauvage with Jet Black accents with Twenty-Two Carbon Fibre model, driver and front passenger power lumbar massage, driver and front passenger power seatback bolster adjustment, driver and front passenger manual cushion length adjustment and UltraView dual-pane sunroof.
Climate Package: Heated and ventilated front seats and heated steering wheel
Technology Package: 12\" diagonal HD reconfigurable Driver Cluster and Head-Up Display Sirius Satellite Radio VIOFO 4K dual channel dash cameras and live GPS tracking ',\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"$149.99/h plus GST\",\r\n imgSrc: baseURL + \"cars-img/cadillac-ct5/index.jpg\",\r\n images: [baseURL + \"cars-img/cadillac-ct5/images/1.jpg\", baseURL + \"cars-img/cadillac-ct5/images/2.jpg\",baseURL + \"cars-img/cadillac-ct5/images/3.jpg\", baseURL + \"cars-img/cadillac-ct5/images/4.jpg\",baseURL + \"cars-img/cadillac-ct5/images/5.jpg\", baseURL + \"cars-img/cadillac-ct5/images/6.jpg\",baseURL + \"cars-img/cadillac-ct5/images/7.jpg\", baseURL + \"cars-img/cadillac-ct5/images/8.jpg\"],\r\n },\r\n {\r\n id: \"cadillac-escalade-ev\",\r\n name: \"2025 Cadillac Escalade IQ EV\",\r\n label: \"6 Passenger - Arriving Dec. 2024\",\r\n description:\r\n \"We are extremely excited to take delivery of the all new reimagined 2025 Cadillac Escalade IQ EV. With a range of 725kms off a single charge and fast charging capabilities of 160km in 10 minutes this is a game changer. Rear executive seating package with ventilated/heated massage captain chairs with tray tables. 4 wheel steering standard. We will be the first to take delivery of this full electric luxury suv in the fourth quarter of 2024. We factory ordered it with every option and we couldn’t me more excited. \",\r\n // slogan: \"POWER AND SOPHISTICATION\",\r\n hourly: \"**Pricing per hour estimated $179.99/h plus GST\",\r\n comingSoon: true,\r\n smallImg: true,\r\n imgSrc: baseURL + \"cars-img/escalade-ev/index.jpg\",\r\n images: [baseURL + \"cars-img/escalade-ev/images/0.jpg\", baseURL + \"cars-img/escalade-ev/images/1.jpg\", baseURL + \"cars-img/escalade-ev/images/2.jpg\",baseURL + \"cars-img/escalade-ev/images/3.jpg\", baseURL + \"cars-img/escalade-ev/images/4.jpg\", baseURL + \"cars-img/escalade-ev/images/5.jpg\", baseURL + \"cars-img/escalade-ev/images/6.jpg\"],\r\n },\r\n {\r\n id: \"2024-sprinter\",\r\n name: \"2024 Mercedes Benz AWD Sprinter Van\",\r\n label: \"12 Passenger\",\r\n smallImg: true,\r\n description:\r\n \"Whether you are heading to Whistler Blackcomb with your family our 2024 AWD 12 passenger Sprinter will get you there safely. DriveUs is proud to be the first Vancouver Car Service to offer this amazing AWD Sprinter Van from Mercedes Benz. We custom ordered this van with all the options possible for our guests comfort and safety. It’s also equipped with fridge/freezer, High Speed 5G Wi Fi, Alexa, High Speed Wireless Charging, Inverter, Dual Roof A/C and Rear Heater, Dual 4K dash cameras and live GPS tracking \",\r\n slogan: \"POWER AND SOPHISTICATION\",\r\n imgSrc: baseURL + \"cars-img/sprinter/index.jpg\",\r\n hourly: \"$269.99/h plus GST\",\r\n images: [baseURL + \"cars-img/sprinter/images/1.jpg\", baseURL + \"cars-img/sprinter/images/2.jpg\",baseURL + \"cars-img/sprinter/images/3.jpg\"],\r\n },\r\n];\r\n"],"sourceRoot":""}