Vue移动端项目适配 Posted on 2020-07-31 | Updated on 2020-07-31 | In work , study | comments: | Visitors: Words count in article: 180 | Reading time ≈ 1 Vue移动端项目适配 在Vue移动端项目中使用postcss-pxtorem和lib-flexible来实现px自动转换成rem. 首先安装这两个依赖12npm install amfe-flexible --savenpm install postcss-pxtorem --save-dev ... Read more »
常用本地服务器 Posted on 2020-07-24 | Updated on 2020-07-31 | In work , study | comments: | Visitors: Words count in article: 153 | Reading time ≈ 1 开启本地服务 平时都是组件化开发,各类框架都搭载完整的webpack,所以不需要自己开启本地服务,以下方式在一些不基于webpack的开发中开启本地服务进行调试。 http-server 全局安装 1npm install http-server -g 开启服务 进入需要本地服务器打开的 ... Read more »
Vue Posted on 2019-09-24 | Updated on 2020-06-09 | In work | comments: | Visitors: Words count in article: 5.2k | Reading time ≈ 24 MVVM M Model:数据模型层 (数据) V View :视图层 (页面 DOM) VM ViewModel:负责监控视图层和数据模型层的数据,并对应的通知另一侧进行修改(监控者) Vue Vue 是一套用于构建用户界面的渐进式框架,使用 vue 必须先引入 123456789101112 ... Read more »
一句搞定JS常见日期格式 Posted on 2019-09-19 | Updated on 2020-06-29 | In work , study | comments: | Visitors: Words count in article: 15 | Reading time ≈ 1 得到的日期格式:”2019-9-19” 1new Date().toLocaleDateString().replace(/ \ / /g,’-’) Read more »
html-css小记 Posted on 2017-07-11 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 3.5k | Reading time ≈ 14 HTML1.什么是html?HTML:超文本标记语言(Hyper Text Markup Language) 是网页的结构层,由W3C制定标准。 2.HTML文档的基本组成123456789<!DOCTYPE html> <html> <head> ... Read more »
Untitled Posted on 2020-07-14 | Updated on 2020-07-14 | comments: | Visitors: Words count in article: 221 | Reading time ≈ 1 webpack webpack是一个现代JavaScript应用程序的静态模块打包器(module bundler)。当webpack处理应用程序时,它会递归地构建一个依赖关系图(dependency graph),其中包含应用程序需要的每个模块,然后将所有这些模块打包成一个或多个bundle。分析 ... Read more »