队列的基本概念、顺序存储、链式存储
数据结构-栈
发表于
更新于
栈的基本概念、顺序存储、链式存储
hexo博客创建、部署到本地及云端
发表于
数据结构--线性表
发表于
更新于
线性表的定义、基本操作、顺序表示、链式表示
Hello World
发表于
更新于
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
使用IntelliJ IDEA创建Vue项目
发表于
一、创建项目
打开IntelliJ IDEA创建一个Static Web项目
打开Termital终端,输入
1
vue -V
可以检查vue版本
二、安装项目
在终端中输入
1
vue init webpack VueDemo
共九个配置项
1
2
3
4
5
6
7
8
9? Project name vuedemo
? Project description A Vue.js project
? Author ReganWlg <1959411673@qq.com>
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? No
? Set up unit tests No
? Setup e2e tests with Nightwatch? No
? Should we run `npm install` for you after the project has been created? (recommended) no前5个直接回车回车回车,后4个no
进入项目目录
1
cd VueDemo
初始化项目
1
npm install
运行项目
1
cnpm run dev
我的第一篇博客文章
发表于