### What problem does this feature solve? We use the following base config ```js base: /page/index.html ``` what we want in href generated by <router-link> ```html <a href="/page/index.html#/foo"/></a> ``` what we have now ```html <a href="/page/index.html/#/foo"/></a> ``` ### What does the proposed API look like? ```js base: { url: '/page/index.html' trailingSlash: false } ``` <!-- generated by vue-issues. DO NOT REMOVE -->