18 lines
685 B
JavaScript
18 lines
685 B
JavaScript
import { defineComponent, h, useSSRContext } from 'vue';
|
|
|
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
name: "DocumentDrivenNotFound",
|
|
render() {
|
|
return h("div", "Document not found");
|
|
}
|
|
});
|
|
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/DocumentDrivenNotFound.vue");
|
|
return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
|
|
};
|
|
|
|
export { _sfc_main as default };
|
|
//# sourceMappingURL=DocumentDrivenNotFound-b0165c0a.mjs.map
|