Hi how can I remove the pound sign in the router links in vue. I always get a pound sign in every links for example: http://localhost:8080/#/
export default new Router({
routes: [
{
path: '/',
name: 'SplashScreen',
component: SplashScreen
},
{
path: '/aboutus',
name: 'AboutUs',
component: AboutUs
},
{
path: '/aboutus',
name: 'Dashboard',
component: Dashboard
}
]
})