After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 6.2 KiB |
@ -0,0 +1,7 @@ |
|||
/** |
|||
* 引入 tailwind.css |
|||
*/ |
|||
|
|||
@tailwind base; |
|||
@tailwind components; |
|||
@tailwind utilities; |
@ -0,0 +1,33 @@ |
|||
import type { AppType } from 'platform-core/types'; |
|||
|
|||
declare global { |
|||
interface Window { |
|||
APP: AppType; |
|||
__webpack_init_sharing__: any; |
|||
__webpack_share_scopes__: any; |
|||
} |
|||
} |
|||
|
|||
declare module '*.vue' { |
|||
import type { App, DefineComponent } from 'vue'; |
|||
|
|||
const component: DefineComponent<{}, {}, any> & { |
|||
install(app: App): void; |
|||
}; |
|||
|
|||
export default component; |
|||
} |
|||
|
|||
declare module 'vue/types/vue' { |
|||
interface VueConstructor { |
|||
$t: any; |
|||
$fc: any; |
|||
} |
|||
} |
|||
|
|||
declare module '@vue/runtime-core' { |
|||
interface ComponentCustomProperties { |
|||
$t: any; |
|||
$fc: any; |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
module.exports = { |
|||
content: [ |
|||
"./public/index.html", |
|||
"./src/**/*.{html,vue,js,ts,jsx,tsx}", |
|||
], |
|||
theme: { |
|||
extend: { |
|||
|
|||
}, |
|||
screens: { |
|||
"xs": {"min": "0px", "max": "599px"}, |
|||
"sm": {"min": "600px", "max": "1023px"}, |
|||
"md": {"min": "1024px", "max": "1439px"}, |
|||
"lg": {"min": "1440px", "max": "1919px"}, |
|||
"xl": {"min": "1920px"}, |
|||
}, |
|||
}, |
|||
plugins: [], |
|||
} |
@ -0,0 +1,21 @@ |
|||
{ |
|||
"allowJs": true, |
|||
"compilerOptions": { |
|||
"target": "ES6", |
|||
"module": "node16", |
|||
"strict": true, |
|||
"jsx": "preserve", |
|||
"noEmit": true, |
|||
"allowImportingTsExtensions": true, |
|||
"noImplicitAny": false, |
|||
"moduleResolution": "node16", |
|||
"sourceMap": true, |
|||
"baseUrl": ".", |
|||
"paths": { |
|||
"@/*": [ |
|||
"src/*" |
|||
] |
|||
}, |
|||
"jsxImportSource": "vue" |
|||
} |
|||
} |
Can't render this file because it has a wrong number of fields in line 4.
|
@ -0,0 +1,19 @@ |
|||
/** |
|||
* swagger 配置 |
|||
*/ |
|||
|
|||
/* 示例 */ |
|||
/* |
|||
[ |
|||
{ |
|||
"groupName" : "io.sc.platform.mvc", |
|||
"title" : "平台 MVC", |
|||
"description": "平台 MVC 文档", |
|||
"termsOfServiceUrl" : "", |
|||
"version": "1.0", |
|||
"basePackages":[ |
|||
"io.sc.platform.mvc.controller" |
|||
] |
|||
} |
|||
] |
|||
*/ |
@ -0,0 +1,14 @@ |
|||
/* |
|||
* 系统属性插件配置 |
|||
* 功能: 该插件配置为框架提供在启动时自动注册系统属性功能(执行 System.setProperty()) |
|||
* 使用说明: |
|||
* key : 属性名 |
|||
* value : 属性值 |
|||
*/ |
|||
|
|||
/* 示例 */ |
|||
/* |
|||
{ |
|||
"h2.dbname.default" : "DB_PLATFORM" |
|||
} |
|||
*/ |