Я пытаюсь написать плагин Vuepress, чтобы использовать расширение уровня приложения и установить плагин Vue. Но я не могу заставить это работать. Можете ли вы взглянуть на код ниже и посмотреть, что не так?
{.vuepress/config.js}
module.exports = {
plugins: [
require('./builder.plugin.js')
]
}
{.vuepress/builder.plugin.js}
module.exports = (option, ctx) => {
return {
enhanceAppFiles: [{
name: 'builder-plugin',
content: `export default ({ Vue }) => {
Vue.component('b-header', {
name: 'b-header',
template: '<div id="header"><slot /></div>'
})
}`
}]
}
}
{README.md}
# Introduction
<b-header>Test from component</b-header>
Последняя ошибка, которую я получаю:
Unknown custom element: <b-header> - did you register the component correctly? For recursive components, make sure to provide the "name" option.