forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
aff80199e5
commit
8b2098fc89
1 changed files with 2 additions and 2 deletions
|
@ -21,10 +21,10 @@ export default Vue.extend({
|
|||
props: ['url', 'rel'],
|
||||
data() {
|
||||
const isSelf = this.url.startsWith(local);
|
||||
const hasRoute =
|
||||
const hasRoute = isSelf && (
|
||||
this.url.substr(local.length).startsWith('/@') ||
|
||||
this.url.substr(local.length).startsWith('/notes/') ||
|
||||
this.url.substr(local.length).startsWith('/pages/');
|
||||
this.url.substr(local.length).startsWith('/pages/'));
|
||||
return {
|
||||
local,
|
||||
schema: null,
|
||||
|
|
Loading…
Reference in a new issue