微语 微语:代码适合中午敲,早晚出BUG

vuex 数据存储读取 Vue

1.在state定义空数组

  state: {
    goodsList:[],//商品列表
  },

2.在 mutations里面写更新数据方法,payload 是传递过来的值,赋值给state下面的goodsList数组

  mutations: {
    // 存储商品
    addGoods(state,payload){
      state.goodsList=payload
    }
  },

3.吧获取到的数据传递给vuex 用this.$store.commit方法传递数据

// 把获取到的数据传递给vuex
        this.$store.commit('addGoods',res.data.data)

4.在从computed里面读取存vuex储的数据

    computed:{
        // 从vuex里面读取商品数据
        list(){
        return  this.$store.state.goodsList
        }
    }

vue 组件封装 Vue

1.创建子组件

components/ListUl.vue

2.父组件引入子组件

    components: {
        ListUl: () => import('@/components/ListUl.vue')
    },

3.父组件中使用

<list-ul></list-ul>

4.父组件传值

<list-ul :sum="list" ></list-ul>

5.子组件接收参数

export default {
    props: ["sum"], // 接收父组件传递的参数
}

6.子组件使用参数

    <ul>
        <li v-for="(v, i) in sum" :key="i">
        </li>
    </ul>

vue 日期过滤器 Vue

格式:年-月-日 时:分:秒

Vue.filter("datetime", (d) => {
    let d1 = new Date(d);
    let year = d1.getFullYear();//年
    let month = ("0" + (d1.getMonth() + 1)).slice(-2);//月
    let day = ("0" + d1.getDate()).slice(-2);//日
    let hour = ("0" + d1.getHours()).slice(-2);//时
    let minute = ("0" + d1.getMinutes()).slice(-2);//分
    let second = ("0" + d1.getSeconds()).slice(-2);//秒

    // 格式化输出
    return (
        year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second
    );
});

echarts图表自适应 Vue

在vue中使用echarts图表,窗口收缩图表不自适应解决办法

在绘制图表下添加:

  window.onresize=function(){
            myChart.resize()
        }

离开页面的时候销毁resize事件

destroyed(){
        window.onresize=null//组件销毁时去除resize事件
    }

Vue组件之间传递数据 Vue

1.设置总线,在main.js中

// 设置一个总线,用于组件之间传递参数
Vue.prototype.$bus = new Vue()

2.需要传数据出去的组件

            // 传递参数
            this.$bus.$emit("sendImg", res.imgUrl);

3.接收数据的组件

         // 接收参数
        this.$bus.$on('sendImg',(url)=>{
            this.imgUrl=url
        })

vue 解决路径多次点击报错 Vue

在路由中如下配置即可解决

const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

登录模板 Vue

基于vue的登录模板

 登录模板

<template>
    <div class="login">
        <div class="login_box">
            <h1> 登录系统</h1>
            <el-input prefix-icon="el-icon-search" v-model="form.username"
                :class="{ username: username, usernames: usernames }" @focus="uname" @blur="unames"></el-input>
            <el-input prefix-icon="el-icon-lock " v-model="form.password"
                :class="{ username: password, usernames: passwords }" show-password @focus="pad" @blur="pads"></el-input>
            <el-button type="primary" @click="submits">登录</el-button>
        </div>
    </div>
</template>

<script>
export default {
    data() {
        return {
            form: {
                username: '',
                password: '',
            },
            username: true,
            usernames: false,
            password: true,
            passwords: false,
        }
    },
    methods: {
        // 登录事件
        submits() {
            this.$router.push('/index')
        },
        // 获取焦点
        //账号
        uname() {
            this.username = false;
            this.usernames = true;
        },
        // 密码
        pad() {
            this.password = false;
            this.passwords = true;
        },
        // 失去焦点
        // 账号
        unames() {
            this.username = true;
            this.usernames = false;
            if (this.form.username !== "") {
                this.username = false;
            }
        },
        // 失去焦点
        // 密码
        pads() {
            this.password = true;
            this.passwords = false;
            if (this.form.password !== "") {
                this.password = false;
            }
        },
    }
}
</script>

<style lang="less" scoped>
.login::after {
    content: '';
    /* 必须的属性 */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom right, #dbe464, rgb(123, 218, 162), #f18e9b);
    background-size: cover;
    z-index: -1;
}

.login {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    .username::after,
    .usernames::after,
    .password::after,
    .passwords::after {
        content: "账号";
        color: #c0c4cc;
        display: block;
        top: 13px;
        left: 33px;
        position: absolute;
        font-size: 14px;
        transition: all 0.5s;
        // 鼠标点击穿透
        pointer-events: none;
    }

    .usernames::after,
    .password::after,
    .passwords::after {
        content: "账号";
        top: -7px;
        color: #409eff;
    }

    input {
        position: relative;

    }

    input::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        filter: blur(10px);
        z-index: -1;
    }

    .password::after {
        content: "密码";
    }

    .passwords::after {
        content: "密码";
    }

    .login_box {
        position: relative;
        width: 400px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 20px;
        border-radius: 10px;
        border: 1px solid rgb(255, 255, 255, 0.5);
        border-right: 1px solid rgba(63, 62, 62, 0.2);
        border-bottom: 1px solid rgba(63, 62, 62, 0.2);

        background-color: #ffffff45;

        h1 {
            position: relative;
            color: #ffffff;
            font-size: 25px;
        }

        .el-button {
            width: 100%;
        }
    }

    /* 小于等于手机屏幕尺寸 400px 时样式 */
    @media screen and (max-width: 500px) {

        /* 添加您想要的样式 */
        .login_box {
            height: 280px;
            width: 85%;
        }

    }
}
</style>

vue中设置网页标题 Vue

1.在项目根目录中的 vue.config.js 文件中设置 title 字段,代码如下:

// vue.config.js
module.exports = {
  pages: {
    index: {
      entry: 'src/main.js',
      title: 'My App' //在这里修改应用程序的标题
    }
  }
}

在上面的示例代码中,我们将 title 字段设置为 "My App"。此时,如果您在浏览器中打开应用程序,将会看到浏览器标签页中显示的标题是 "My App"。
如果您希望在不同页面中显示不同的标题,可以使用 vue-router 提供的 meta 属性。例如:

// router.js
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home.vue'

Vue.use(Router)

const router = new Router({
  routes: [
    {
      path: '/',
      name: 'home',
      component: Home,
      meta: {
        title: '首页' // 修改页面标题
      }
    },
    //...其他路由省略
  ]
})

router.beforeEach((to, from, next) => {
  // 设置页面标题
  if (to.meta.title) {
    document.title = to.meta.title
  } else {
    document.title = 'My App' // 默认标题
  }
  next()
})

export default router

在上述代码中,我们在路由配置中添加了 meta 属性,并在 beforeEach 钩子函数中设置了页面的标题,这样就可以为不同的页面设置不同的标题了。

需要注意的是,由于在浏览器中,document.title 是全局变量,因此最好在每次切换路由时都设置一次标题,以确保应用程序的标题在每个页面上都正确显示。