20 changed files with 94 additions and 36 deletions
@ -1,8 +1,8 @@ |
|||
const Layout = () => import('@/layout.vue'); |
|||
const BasicLayout = () => import('./basic.vue'); |
|||
|
|||
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView); |
|||
|
|||
const AuthPageLayout = () => |
|||
import('@vben/layouts').then((m) => m.AuthPageLayout); |
|||
|
|||
export { AuthPageLayout, IFrameView, Layout }; |
|||
export { AuthPageLayout, BasicLayout, IFrameView }; |
|||
@ -1,3 +1 @@ |
|||
// export { useNProgress } from '@vueuse/integrations/useNProgress';
|
|||
|
|||
export * from './use-request'; |
|||
|
|||
@ -0,0 +1,49 @@ |
|||
{ |
|||
"name": "@vben/styles", |
|||
"version": "1.0.0", |
|||
"type": "module", |
|||
"license": "MIT", |
|||
"homepage": "https://github.com/vbenjs/vue-vben-admin", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/vbenjs/vue-vben-admin.git", |
|||
"directory": "packages/styles" |
|||
}, |
|||
"bugs": { |
|||
"url": "https://github.com/vbenjs/vue-vben-admin/issues" |
|||
}, |
|||
"scripts": { |
|||
"build": "pnpm vite build", |
|||
"prepublishOnly": "npm run build" |
|||
}, |
|||
"files": [ |
|||
"dist" |
|||
], |
|||
"sideEffects": [ |
|||
"**/*.css" |
|||
], |
|||
"main": "./dist/index.mjs", |
|||
"module": "./dist/index.mjs", |
|||
"imports": { |
|||
"#*": "./src/*" |
|||
}, |
|||
"exports": { |
|||
".": { |
|||
"development": "./src/index.ts", |
|||
"types": "./src/index.ts", |
|||
"default": "./dist/index.mjs" |
|||
} |
|||
}, |
|||
"publishConfig": { |
|||
"exports": { |
|||
".": { |
|||
"types": "./dist/index.d.ts", |
|||
"default": "./dist/index.mjs" |
|||
} |
|||
} |
|||
}, |
|||
"dependencies": { |
|||
"@vben-core/design": "workspace:*", |
|||
"@vben-core/design-tokens": "workspace:*" |
|||
} |
|||
} |
|||
@ -0,0 +1,4 @@ |
|||
import '@vben-core/design/tailwind'; |
|||
|
|||
import '@vben-core/design'; |
|||
import '@vben-core/design-tokens'; |
|||
@ -0,0 +1,5 @@ |
|||
{ |
|||
"$schema": "https://json.schemastore.org/tsconfig", |
|||
"extends": "@vben/tsconfig/web.json", |
|||
"include": ["src"] |
|||
} |
|||
@ -0,0 +1,3 @@ |
|||
import { defineConfig } from '@vben/vite-config'; |
|||
|
|||
export default defineConfig(); |
|||
Loading…
Reference in new issue