This commit is contained in:
2022-12-09 16:41:41 +08:00
parent c1cce5a7c2
commit ff7aa8774f
2003 changed files with 156639 additions and 140 deletions

View File

@@ -0,0 +1,20 @@
<script lang="ts">
export default {
name: "AlignLeftIcon",
};
</script>
<script setup lang="ts">
import LayIcon from "../component/icon/index";
const props = defineProps<{
color?: string;
size?: string;
}>();
</script>
<template>
<lay-icon
:color="props.color"
:size="props.size"
type="layui-icon-align-left"
/>
</template>

View File

@@ -0,0 +1,4 @@
x}Tю<54>0쳿beU
<EFBFBD>B<EFBFBD><U"@*<2A>^Nm<4E><6D><EFBFBD><EFBFBD>3<EFBFBD>4<EFBFBD>:6<><36>tͿw1<77>Kڪ/<08><>3<EFBFBD>Y<EFBFBD>B<EFBFBD><02><><EFBFBD><EFBFBD>w<EFBFBD>-[<5B>8PB<50>ȸ<EFBFBD><gxiL<69><4C><EFBFBD>Zt<5A><74>+<03><><EFBFBD> <09>ϢhMS<4D><53><EFBFBD><EFBFBD><EFBFBD>{tx<74>+vݱt3<74><33><EFBFBD>B<><42>kni<6E><69>Ӿ<EFBFBD><D3BE><EFBFBD>X<EFBFBD>|<7C><1A>P<EFBFBD><50><04><>C<EFBFBD>c3$<24><1C>vx!l5<6C>><3E>^i<>'<27><><EFBFBD><EFBFBD>z<13>I
m-ʁ.<2E>d^<5E><><1B>%Z<>wXI+
<EFBFBD><EFBFBD>><3E><><18>B<EFBFBD>ؕ<EFBFBD><D895>h<EFBFBD><68><EFBFBD><EFBFBD> <0C><><1F>XlD<6C>H<EFBFBD><48>!<21>'o-Ww<57> <09>BY<42>Ėdn<64>6

View File

@@ -0,0 +1,19 @@
.DS_Store
node_modules/
dist/
example/dist/
lib/
/types/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock
package-lock.json
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

View File

@@ -0,0 +1,20 @@
<script lang="ts">
export default {
name: "CameraFillIcon",
};
</script>
<script setup lang="ts">
import LayIcon from "../component/icon/index";
const props = defineProps<{
color?: string;
size?: string;
}>();
</script>
<template>
<lay-icon
:color="props.color"
:size="props.size"
type="layui-icon-camera-fill"
/>
</template>

View File

@@ -0,0 +1,15 @@
export default {
nav: {
home: "Home",
guide: "Guide",
components: "Components",
resources: "Resources",
material: "Material",
},
home: {
description: "An enterprise-class UI components based on Layui and Vue.",
version: "version",
changelog: "changelog",
download: "download",
},
};

View File

@@ -0,0 +1 @@
.lay-skeleton .lay-skeleton-item,.lay-skeleton .lay-skeleton-type--p{height:16px;border-radius:5px;margin-bottom:16px;background:#eeeeee}.lay-skeleton .lay-skeleton-type--image{width:240px;height:240px;background:#eeeeee;display:flex;justify-content:center;align-items:center}.lay-skeleton .lay-skeleton-type--image i{font-size:40px}.lay-skeleton-animated .lay-skeleton-type--image{width:240px;height:240px!important;display:flex;justify-content:center;align-items:center}.lay-skeleton-animated .lay-skeleton-type--image i{font-size:40px}.lay-skeleton-animated .lay-skeleton-item{height:16px;border-radius:5px;margin-bottom:16px;background:#eeeeee;background:linear-gradient(90deg,#f2f2f2 25%,#ececec 37%,#f2f2f2 63%);background-size:400% 100%;animation:lay-skeleton-loading 1.2s ease infinite}.lay-skeleton-first{width:30%}.lay-skeleton-last{width:62.8%}@keyframes lay-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta name="force-rendering" content="webkit" />
<meta name="applicable-device" content="pc,mobile" />
<meta name="author" content="Jmys <jmys1992@gmail.com>" />
<meta name="keywords" content="layui,layui-vue,vue,layer,layer-vue,ui,components"/>
<link rel="icon" href="/favicon.ico" />
<title>layer-vue 弹层解决方案</title>
<!--preload-links-->
</head>
<body>
<div id="app">
<!--app-html-->
</div>
<script type="module" src="./src/entry-client.ts"></script>
</body>
</html>