无语大神

文章
4
资源
1
加入时间
3年2月3天

Element UI 的安装与工程创建

Element UI 是一套基于 Vue 的桌面端组件库,封装好了很多常用的 UI 组件,开发者可以使用 Element UI 快速搭建一个网站。官方文档:https://element.eleme.cn/#/zh-CN/component/installation1. 创建 Vue 空白项目安装 Element UI 之前要确保自己的计算机上已经成功安装了 Vue,如果电脑还没有安装 Vue 环境的,可以参考这一篇博客的安装教程。步骤一:创建空白的 Vue 工程,进入 cmd 命令行窗口输入

php 缓存代码的坏味道

缓存在Web程序里必不可少,最常见的形式如下:01 class Foo extends DAO02 {03 public function find_by_a()04 {05 $result = $this->cache->get('cache_a');0607 if (!$result) {08 ...