1.1.4 • Published 6 days ago

element-plus-crx v1.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
6 days ago

Element-Plus-Crx

npm

文档

安装使用

npm install element-plus-crx --save

特性

  • Vue 3 Composition AP
  • TypeScript 编写

数据配置

  • 数据配置表单/表格,极简的思想,完全的数据驱动,拥有绝对的灵活性。

扩展组件

  • 更多丰富的扩展组件,在 ElementPlus 没有找到的这里或许会有。

快捷使用

  • 适配双语言,黑暗模式,完整的typescript提示,更方便的全局配置。

docs

如此简单

<template>
  <ElForm label-width="80px" :model="form.model">
    <AgelFormGrid :items="form.items" :span="8"> </AgelFormGrid>
  </ElForm>
  <AgelTable :data="table.data" :columns="table.columns"> </AgelTable>
</template>

<script lang="ts" setup>
import { reactive } from 'vue'

const arr = [
  { label: '名称', prop: "name" },
  { label: '日期', prop: 'date' },
  { label: '地址', prop: 'address'},
]

const form = reactive({
  model: {},
  items: arr
})

const table = reactive({
  data: [],
  columns: arr
})
</script>
1.1.4

6 days ago

1.1.3

5 months ago

1.1.2

5 months ago

1.1.1

5 months ago

1.1.0

9 months ago

1.0.11

11 months ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago