Skip to content
代码片段 群组 项目
提交 57b8567c 编辑于 作者: Justin Ho's avatar Justin Ho
浏览文件

Add Vue app structure for integration overrides

Only init the app for now
上级 66b4b117
No related branches found
No related tags found
无相关合并请求
<script>
export default {
name: 'IntegrationOverrides',
props: {
overridesPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<div></div>
</template>
import Vue from 'vue';
import IntegrationOverrides from './components/integration_overrides.vue';
export default () => {
const el = document.querySelector('.js-vue-integration-overrides');
if (!el) {
return null;
}
const { overridesPath } = el.dataset;
return new Vue({
el,
render(createElement) {
return createElement(IntegrationOverrides, {
props: {
overridesPath,
},
});
},
});
};
import initIntegrationOverrides from '~/integrations/overrides';
initIntegrationOverrides();
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册