vuetify
Version:
Vue.js 2 Semantic Component Framework
86 lines (74 loc) • 1.95 kB
JavaScript
import Ripple from '../directives/ripple'
export default {
name: 'routable',
directives: {
Ripple
},
props: {
activeClass: String,
append: Boolean,
disabled: Boolean,
exact: {
type: Boolean,
default: undefined
},
exactActiveClass: String,
href: [String, Object],
to: [String, Object],
nuxt: Boolean,
replace: Boolean,
ripple: [Boolean, Object],
tag: String,
target: String
},
methods: {
click () {},
generateRouteLink () {
let exact = this.exact
let tag
const data = {
attrs: { disabled: this.disabled },
class: this.classes,
props: {},
directives: [{
name: 'ripple',
value: (this.ripple && !this.disabled) ? this.ripple : false
}],
[this.to ? 'nativeOn' : 'on']: {
...this.$listeners,
click: this.click
}
}
if (typeof this.exact === 'undefined') {
exact = this.to === '/' ||
(this.to === Object(this.to) && this.to.path === '/')
}
if (this.to) {
// Add a special activeClass hook
// for component level styles
let activeClass = this.activeClass
let exactActiveClass = this.exactActiveClass || activeClass
if (this.proxyClass) {
activeClass += ' ' + this.proxyClass
exactActiveClass += ' ' + this.proxyClass
}
tag = this.nuxt ? 'nuxt-link' : 'router-link'
Object.assign(data.props, {
to: this.to,
exact,
activeClass,
exactActiveClass,
append: this.append,
replace: this.replace
})
} else {
tag = (this.href && 'a') || this.tag || 'a'
if (tag === 'a') {
if (this.href) data.attrs.href = this.href
if (this.target) data.attrs.target = this.target
}
}
return { tag, data }
}
}
}