fix
修复on-select事件不触发
This commit is contained in:
parent
9d553a2b81
commit
7ff2f71a2f
2 changed files with 11 additions and 9 deletions
|
@ -5,11 +5,9 @@
|
|||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import mixinsLink from '../../mixins/link';
|
||||
export default {
|
||||
name: 'AnchorLink',
|
||||
inject: ['anchorCom'],
|
||||
mixins: [ mixinsLink ],
|
||||
props: {
|
||||
href: String,
|
||||
title: String
|
||||
|
@ -33,10 +31,15 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
goAnchor (event) {
|
||||
goAnchor () {
|
||||
this.currentLink = this.href;
|
||||
this.$emit('on-select', this.href);
|
||||
this.handleCheckClick(event);
|
||||
this.anchorCom.$emit('on-select', this.href);
|
||||
const isRoute = this.$router;
|
||||
if (isRoute) {
|
||||
this.$router.push(this.href);
|
||||
} else {
|
||||
window.location.href = this.href;
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
|
|
|
@ -26,15 +26,14 @@ export default {
|
|||
methods: {
|
||||
handleClick () {
|
||||
const isRoute = this.$router;
|
||||
const href = this.to || this.href;
|
||||
if (isRoute) {
|
||||
this.replace ? this.$router.replace(href) : this.$router.push(href);
|
||||
this.replace ? this.$router.replace(this.to) : this.$router.push(this.to);
|
||||
} else {
|
||||
window.location.href = href;
|
||||
window.location.href = this.to;
|
||||
}
|
||||
},
|
||||
handleCheckClick (event) {
|
||||
if (this.to || this.href) {
|
||||
if (this.to) {
|
||||
if (this.target === '_blank') {
|
||||
return false;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue