网站制作
博客网站制作,本栏目主要是分享关于域名选择、空间购买,个人博客网站模板制作,网站后期维护运营,优化等相关文章,以及提供帝国cms建站过程中遇到问题的解决办法。
最新博文
-
win10关闭自动更新
运行services.msc
找到Windows Update 禁用蒙xs2021-05-13【推荐工具】
阅读更多 -
关于vuex
触发mutations方法
this.$store.commit('方法名', 值)
触发actions方法
this.$store.dispatch('方法名', 值);
扩展actions
this.$store.dispatch('us蒙xs2021-05-12【vue.js心得】
阅读更多 -
git大法
基础
蒙xs2021-05-07【推荐工具】
阅读更多 -
vue 使用postcss-px-to-viewport适配手机端
使用npm 安装npm install postcss-px-to-viewport --save-dev在根目录创建 .postcssrc.js文件内容module.exports = { plugins: { autoprefixer: {}, // 用来给不同
蒙xs2021-04-29【vue.js心得】
阅读更多 -
css公共样式
css 公共样式
蒙xs2021-04-29【CSS3|Html5】
阅读更多 -
vue 使用flv.js播放flv监控
安装npm install --save flv.js
html
<template>
<div>
<video id="videoElement" autoplay controls width="300" height="200" ></video>
</div>
</template>
script
<s蒙xs2021-04-22【vue.js心得】
阅读更多 -
vue 使用moment时间处理插件
1.引入import moment from 'moment'获取当前时间let now = moment();console.log(now) // 当前时间对象格式化let now = moment().format('YYYY-MM-DD HH:mm:ss
蒙xs2021-04-20【vue.js心得】
阅读更多 -
使用day.js格式化时间
安装 dayjs 依赖包
npm install dayjs --save
封装js文件调用
引入文件
调用
js中使用 ----> 直接用
const date = formatDate(this.form.startDate, 'YYYY-MM蒙xs2021-03-29【vue.js心得】
阅读更多 -
vue 过滤,筛选 数组
vue.js心得vue过滤
蒙xs2021-03-26【vue.js心得】
阅读更多 -
使用v-for循环输出数组的某一部分
可以使用slice或者splice获取数组中的特定部分进行输出:
<li v-for="item of array.slice(0, 5)" :key="item.id">{{ item.name }}</li>蒙xs2021-02-03【vue.js心得】
阅读更多 -
vue 解决跨域问题
vue 跨域
蒙xs2020-12-21【vue.js心得】
阅读更多 -
获取 url链接内容
console.log(location);
蒙xs2020-12-04【vue.js心得】
阅读更多 -
vue 控制滚动
返回顶部和固定滚动
蒙xs2020-12-04【vue.js心得】
阅读更多 -
vue 做实时在线聊天
<template>
<div class="user-chat">
<!-- 导航栏 -->
<van-nav-bar
class="app-nav-bar"
title="小智同学"
left-arrow
@click-left="$蒙xs2020-11-25【vue.js心得】
阅读更多