| 123456789101112131415161718 |
- document.head.insertAdjacentHTML('beforeend','<style type="text/css" file="app/shared/AppLink.styl">'+stylFns['app/shared/AppLink.styl']+'</style>')
- module.exports =
- default:
- render: (new Function '_ctx', '_cache', renderFns['app/shared/AppLink.pug'])()
- name: 'AppLink'
- props:
- to:
- type: [String, Object]
- required: true
- computed:
- isExternal: ->
- if typeof @.to == 'string'
- return @.to.startsWith('http')
- return false
- data: ->
- return {
- _: _
- }
|