laravel-vue-admin
laravel-vue-admin copied to clipboard
开箱即用的Laravel后台扩展,前后端分离,后端控制前端组件,无需编写vue即可创建一个vue+vuex+vue-route+elment-ui+laravel的项目 ,丰富的表单 表格组件,强大的自定义组件功能。
Grid使用了树状结构都在一页展示了,分页时多余的,建议取消分页,或者Grid增加隐藏分页行的方法。
使用rate 组件时,渲染出来是 `` 在 vendor\smallruraldog\laravel-vue-admin\resources\js\components\widgets\Grid 目录下添加了 Rate.vue 也执行了 更新静态资源命令,清理视图缓存 ,结果一样,Rate.vue 代码如下 ``` export default { props: { attrs: Object, value: { default: true } }, data() { return {options: this.attrs.options};...
一般情况下,权限会有一个层级关系,比如文章管理,文章新增、文章编辑、文章删除、文章审核等,如果平行列表将导致权限比较多时看起来很混乱,所以建议改为树状结构,包括权限列表页面和角色、菜单、用户等页面选择权限的表单。
经过反复测试,在自定义组件中使用图表,智能通过Line::make()->data($data);传入数据,无法通过前端异步获取数据后更新/初始化数据。
毕竟官方的图标不够用,想使用一些iconfont的svg图标,所以建议把iconchoose做成可配置的。
 现在的upload上传大图片出现报错,建议加上上传大小限制: `beforeImageUpload(file) { const isJPG = file.type === 'image/jpeg'; const isLt2M = file.size / 1024 / 1024 < 2; if (!isJPG) { this.$message.error('上传头像图片只能是 JPG 格式!'); } if (!isLt2M) {...
Bumps [minimist](https://github.com/minimistjs/minimist), [minimist](https://github.com/minimistjs/minimist) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies needed to be updated together. Updates `minimist` from 1.2.5 to 1.2.8 Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long...
Removes [global-modules-path](https://github.com/rosen-vladimirov/global-modules-path). It's no longer used after updating ancestor dependency [dplayer](https://github.com/DIYgod/DPlayer). These dependencies need to be updated together. Removes `global-modules-path` Updates `dplayer` from 1.25.0 to 1.27.0 Release notes Sourced from...