vue后台整体布局完善 global.css *{ margin: 0; padding: 0; box-sizing: border-box; } html,body{ height: 100%; } home.vue <template> <!-- <div style="height: 100%&q...
Springboot后台管理系统_Vue后台主体框架搭建
vue后台主体框架搭建 下载elementUI npm i element-ui -S elementUI文档-快速上手 home.vue <template> <div style="height: 100%"> <el-container style="height: 100%;&qu...
Springboot后台管理系统_Vue2集成ElementUI
软件版本 jdk1.8 mysql5.7+ node14.16.0 navicat idea2021.3 创建一个项目 vue create hello-world 创建成功 运行vue项目 cd vue npm run serve
Vim简单操作
普通模式 ---即初始模式: 左h 右l 上k 下j 0 定位到行首 = ^ $ 定位到行尾 b 定位到单词首 e 定位到单词尾 w 定位到下一单词起始处 gg 定位到文件开头 G 定位到文件末尾 插入模式 ----esc退出 ...
Python项目_数据可视化
mpl_squares.py import matplotlib.pyplot as plt input_value = [1, 2, 3, 4, 5] squares = [1, 4, 9, 16, 25] # 尝试根据这些数字绘制出有意义的图形 # lineheight决定了plot()绘制的线条粗细 plt.plot(input_...
Python项目_外星人入侵
alien.py import pygame from pygame.sprite import Sprite class Alien(Sprite): # 表示单个外星人的类 def __init__(self, ai_setting, screen): super(Alien, self).__init__() self...
Python基础
print("Hello") # 变量的使用 message = "hello" print(message) # test 2-1 message="simple hello" print(message) # test 2-20 message = "hello" print(message...
JS网页计算器
html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>cal</title> <link rel="styles...
md基础语法和在hexo出错解决方法
标题 Markdown支持6种级别的标题,对应html标签 h1 ~ h6 # h1 ## h2 ### h3 #### h4 ##### h5 ###### h6 除此之外,Markdown还支持另外一种形式的标题展示形式,使用下划线进行文本大小的控制 这是一级标题 === ...
CodeBlocks安装使用、汉化和更改配色
CodeBlocks安装使用教程 安装和使用 官网http://www.codeblocks.org/点击downloads。选带mingw的版本,一路安装即可 使用:菜单栏找到file里的new,并点击其中的file,点击c++source,一路next Filename with full p...
