UNPKG

@gridsome/vue-remark

Version:
14 lines (11 loc) 342 B
import VueRemarkContent from './src/VueRemarkContent' export default function (Vue, options, { router }) { Vue.component('VueRemarkContent', VueRemarkContent) router.beforeEach((to, from, next) => { if (typeof to.meta.$vueRemark === 'function') { to.meta.$vueRemark().then(() => next()) } else { next() } }) }