27 lines
874 B
JavaScript
27 lines
874 B
JavaScript
|
import { defineComponent, h, useSSRContext } from 'vue';
|
||
|
|
||
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||
|
name: "DocumentDrivenEmpty",
|
||
|
props: {
|
||
|
value: {
|
||
|
type: Object,
|
||
|
required: true
|
||
|
}
|
||
|
},
|
||
|
render({ value }) {
|
||
|
return h("div", void 0, [
|
||
|
h("p", "Document is empty"),
|
||
|
h("p", `Add content to it by opening ${value._source}/${value._file} file.`)
|
||
|
]);
|
||
|
}
|
||
|
});
|
||
|
const _sfc_setup = _sfc_main.setup;
|
||
|
_sfc_main.setup = (props, ctx) => {
|
||
|
const ssrContext = useSSRContext();
|
||
|
(ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/.pnpm/@nuxt+content@2.6.0_rollup@2.79.1/node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue");
|
||
|
return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
|
||
|
};
|
||
|
|
||
|
export { _sfc_main as default };
|
||
|
//# sourceMappingURL=DocumentDrivenEmpty-91213222.mjs.map
|