JSFiddle - React, Tailwind, and code Playground

by Yomi Eluwande

JavaScript

//routes.js file

const CustomersMain = () => import(/* webpackChunkname: "customersmain" */'@/components/dashboard/customers/main')

const router = new VueRouter({
  routes: [
    { path: '/customers', component: CustomersMain, name: 'customers' }
  ]
})