├── .gitignore
├── public
└── favicon.ico
├── src
├── assets
│ ├── logo.png
│ ├── homeBack.png
│ ├── logo.svg
│ └── menu.svg
├── App.vue
├── lib
│ ├── Layout
│ │ ├── Footer.vue
│ │ ├── Header.vue
│ │ ├── Side.vue
│ │ ├── index.ts
│ │ ├── Content.vue
│ │ └── Layout.vue
│ ├── Tab.vue
│ ├── Icon.vue
│ ├── Message
│ │ ├── index.ts
│ │ └── Message.vue
│ ├── Radio
│ │ ├── RadioGroup.vue
│ │ └── Radio.vue
│ ├── Spin.vue
│ ├── index.ts
│ ├── CheckBox
│ │ ├── CheckBoxGroup.vue
│ │ └── CheckBox.vue
│ ├── Table.vue
│ ├── Affix.vue
│ ├── Carousel
│ │ └── CarouselItem.vue
│ ├── Collapse
│ │ ├── Collapse.vue
│ │ └── CollapseItem.vue
│ ├── Dialog.vue
│ ├── Switch.vue
│ ├── Cascader
│ │ ├── Cascader.vue
│ │ └── CascaderItems.vue
│ ├── Tabs.vue
│ ├── Button.vue
│ ├── Drawer.vue
│ ├── Input.vue
│ ├── Pager.vue
│ └── Rate.vue
├── components
│ ├── SpinDemos
│ │ ├── BasicSpin.vue
│ │ ├── TextSpin.vue
│ │ └── SizeSpin.vue
│ ├── ButtonDemos
│ │ ├── BtnSize.vue
│ │ ├── BtnType.vue
│ │ ├── BtnLoading.vue
│ │ ├── BtnDisabled.vue
│ │ └── BtnLevel.vue
│ ├── AffixDemos
│ │ ├── BasicAffix.vue
│ │ └── AssignAffix.vue
│ ├── Other
│ │ ├── Markdown.vue
│ │ ├── Main.vue
│ │ └── Aside.vue
│ ├── SwitchDemos
│ │ ├── Loading.vue
│ │ ├── DefaultValue.vue
│ │ ├── Disabled.vue
│ │ └── Size.vue
│ ├── CheckBoxDemos
│ │ ├── BasicCheckBox.vue
│ │ ├── DisabledCheckBox.vue
│ │ ├── GroupCheckBox.vue
│ │ └── IndeterminateCheckBox.vue
│ ├── RateDemos
│ │ ├── ClearRate.vue
│ │ ├── DIsableRate.vue
│ │ ├── HalfRate.vue
│ │ ├── IconRate.vue
│ │ ├── TextRate.vue
│ │ └── BasicRate.vue
│ ├── Popover
│ │ ├── BasicPopover.vue
│ │ ├── DirectionPopover.vue
│ │ └── TriggerPopover.vue
│ ├── InputDemos
│ │ ├── BasicInput.vue
│ │ ├── ShowPassword.vue
│ │ ├── ClearableInput.vue
│ │ ├── DisabledInput.vue
│ │ ├── TextareaInput.vue
│ │ └── IconInput.vue
│ ├── PagerDemos
│ │ ├── MorePager.vue
│ │ ├── SizePager.vue
│ │ ├── SimplePager.vue
│ │ └── BasicPager.vue
│ ├── RadioDemos
│ │ ├── BasicRadio.vue
│ │ ├── DisabledRadio.vue
│ │ └── RadioGroup.vue
│ ├── TabsDemos
│ │ ├── BasicDemo.vue
│ │ ├── VerticalTabs.vue
│ │ └── DisabledTabs.vue
│ ├── MessageDemos
│ │ ├── BasicMessage.vue
│ │ ├── TypeMessage.vue
│ │ ├── CloseMessage.vue
│ │ └── DurationMessage.vue
│ ├── IconDemos
│ │ └── basicIcon.vue
│ ├── DrawerDemos
│ │ ├── CustomDrawer.vue
│ │ ├── BasicDrawer.vue
│ │ └── PlacementDrawer.vue
│ ├── IconDemo.vue
│ ├── LayoutDemos
│ │ ├── LayoutDemo1.vue
│ │ ├── LayoutDemo2.vue
│ │ ├── LayoutDemo3.vue
│ │ └── LayoutDemo4.vue
│ ├── CarouselDemos
│ │ ├── BasicCarousel.vue
│ │ ├── Duration.vue
│ │ ├── SignCarousel.vue
│ │ └── AnimationCarousel.vue
│ ├── DialogDemos
│ │ ├── BasicDialog.vue
│ │ └── FooterDialog.vue
│ ├── CascaderDemos
│ │ ├── Multilayer.vue
│ │ ├── BasicCascader.vue
│ │ └── DisabledCascader.vue
│ ├── AffixDemo.vue
│ ├── SpinDemo.vue
│ ├── PopoverDemo.vue
│ ├── LayoutDemo.vue
│ ├── TabsDemo.vue
│ ├── RadioDemo.vue
│ ├── Demo.vue
│ ├── CollapseDemo.vue
│ ├── CheckBoxDemo.vue
│ ├── CollapseDemos
│ │ ├── DisabledCollapse.vue
│ │ ├── AccordionCollapse.vue
│ │ └── BasicCollapse.vue
│ ├── CascaderDemo.vue
│ ├── CarouselDemo.vue
│ ├── DrawerDemo.vue
│ ├── ButtonDemo.vue
│ ├── DialogDemo.vue
│ ├── MessageDemo.vue
│ ├── PagerDemo.vue
│ ├── SwitchDemo.vue
│ ├── RateDemo.vue
│ └── InputDemo.vue
├── shims-vue.d.ts
├── main.ts
├── markdown
│ ├── get-started.md
│ └── intro.md
├── styles
│ ├── index.scss
│ └── le.scss
├── views
│ ├── Doc.vue
│ ├── TopNav.vue
│ └── Home.vue
└── router.ts
├── .vscode
└── settings.json
├── deploy.sh
├── index.html
├── utils.ts
├── README.md
├── vite.config.ts
├── package.json
├── rollup.config.js
└── plugins
└── md.ts
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | *.local
5 | .idea/*
6 | /dist
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mywebc/le-vue/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mywebc/le-vue/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/src/assets/homeBack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mywebc/le-vue/HEAD/src/assets/homeBack.png
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "vue3snippets.enable-compile-vue-file-on-did-save-code": false
3 | }
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
自定义的内容!!
11 | 12 |这是一段信息。
11 |这是一段信息。
12 |这是一段信息。
13 | 14 | 15 | 16 | 17 |这是一段信息。
11 |这是一段信息。
12 |这是一段信息。
13 | 14 | 15 | 16 | 17 ||
7 | {{ column.text }}
8 | |
9 |
|---|
| {{ data[column.field] }} | 14 |
* Layout:布局容器,其下可嵌套 Header Sider Content Footer 或 Layout 本身,可以放在任何父容器中。
7 |* Header:顶部布局,自带默认样式,其下可嵌套任何元素。
8 |* Sider:侧边栏,自带默认样式及基本功能,其下可嵌套任何元素。
9 |* Content:内容部分,自带默认样式,其下可嵌套任何元素。
10 |* Footer:底部布局,自带默认样式,其下可嵌套任何元素。
11 | 注意:采用 flex 布局实现,请注意浏览器兼容性问题。 12 |8 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 9 | can be found as a welcome guest in many households across the world. 10 |
11 |12 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 13 | can be found as a welcome guest in many households across the world. 14 |
15 |16 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 17 | can be found as a welcome guest in many households across the world. 18 |
19 |22 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 23 | can be found as a welcome guest in many households across the world. 24 |
25 |26 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 27 | can be found as a welcome guest in many households across the world. 28 |
29 |30 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 31 | can be found as a welcome guest in many households across the world. 32 |
33 |36 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 37 | can be found as a welcome guest in many households across the world. 38 |
39 |40 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 41 | can be found as a welcome guest in many households across the world. 42 |
43 |44 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 45 | can be found as a welcome guest in many households across the world. 46 |
47 |8 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 9 | can be found as a welcome guest in many households across the world. 10 |
11 |12 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 13 | can be found as a welcome guest in many households across the world. 14 |
15 |16 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 17 | can be found as a welcome guest in many households across the world. 18 |
19 |22 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 23 | can be found as a welcome guest in many households across the world. 24 |
25 |26 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 27 | can be found as a welcome guest in many households across the world. 28 |
29 |30 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 31 | can be found as a welcome guest in many households across the world. 32 |
33 |36 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 37 | can be found as a welcome guest in many households across the world. 38 |
39 |40 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 41 | can be found as a welcome guest in many households across the world. 42 |
43 |44 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 45 | can be found as a welcome guest in many households across the world. 46 |
47 |8 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 9 | can be found as a welcome guest in many households across the world. 10 |
11 |12 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 13 | can be found as a welcome guest in many households across the world. 14 |
15 |16 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 17 | can be found as a welcome guest in many households across the world. 18 |
19 |22 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 23 | can be found as a welcome guest in many households across the world. 24 |
25 |26 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 27 | can be found as a welcome guest in many households across the world. 28 |
29 |30 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 31 | can be found as a welcome guest in many households across the world. 32 |
33 |36 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 37 | can be found as a welcome guest in many households across the world. 38 |
39 |40 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 41 | can be found as a welcome guest in many households across the world. 42 |
43 |44 | A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it 45 | can be found as a welcome guest in many households across the world. 46 |
47 |