1234567891011121314151617181920212223242526272829 |
- import { mergeProps, useSSRContext } from "vue";
- import { ssrRenderAttrs } from "vue/server-renderer";
- import { _ as _export_sfc } from "../server.mjs";
- import "ofetch";
- import "#internal/nuxt/paths";
- import "hookable";
- import "unctx";
- import "h3";
- import "unhead";
- import "@unhead/shared";
- import "vue-router";
- import "radix3";
- import "defu";
- import "ufo";
- const _sfc_main = {};
- function _sfc_ssrRender(_ctx, _push, _parent, _attrs) {
- _push(`<div${ssrRenderAttrs(mergeProps({ class: "login" }, _attrs))}><h1>登录</h1></div>`);
- }
- const _sfc_setup = _sfc_main.setup;
- _sfc_main.setup = (props, ctx) => {
- const ssrContext = useSSRContext();
- (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("pages/login.vue");
- return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
- };
- const login = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]);
- export {
- login as default
- };
- //# sourceMappingURL=login-C0jWU6fx.js.map
|