23 lines
819 B
JavaScript
23 lines
819 B
JavaScript
import { ref, mergeProps, useSSRContext } from 'vue';
|
|
import { ssrRenderAttrs, ssrRenderStyle } from 'vue/server-renderer';
|
|
|
|
const _sfc_main = {
|
|
__name: "land",
|
|
__ssrInlineRender: true,
|
|
setup(__props) {
|
|
ref(null);
|
|
return (_ctx, _push, _parent, _attrs) => {
|
|
_push(`<div${ssrRenderAttrs(mergeProps({ class: "h-screen w-screen" }, _attrs))}><canvas id="canvas" style="${ssrRenderStyle({ "width": "100%", "height": "100%" })}"></canvas></div>`);
|
|
};
|
|
}
|
|
};
|
|
const _sfc_setup = _sfc_main.setup;
|
|
_sfc_main.setup = (props, ctx) => {
|
|
const ssrContext = useSSRContext();
|
|
(ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("pages/land.vue");
|
|
return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
|
|
};
|
|
|
|
export { _sfc_main as default };
|
|
//# sourceMappingURL=land-7579be0d.mjs.map
|