摘要:
1、https://gitee.com/ 登录 注册 2、设置 3、生成 添加 获取 sshkey ; 4、将生成的 sshkey 放在 里面公匙 阅读全文
摘要:
阅读全文
摘要:
let nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; let res = nums.filter((num) => { return num > 5; }); console.log(res); // [6, 7, 8, 9, 10] 阅读全文
摘要:
var array1 = [1,4,9,16]; const map1 = array1.map(x => x *2); console.log(map1); 打印结果为: Array [2,8,18,32] <!DOCTYPE html> <html> <head> <meta charset=" 阅读全文
摘要:
<view id="outer" bindtap="handleTap1"> outer view <view id="middle" catchtap="handleTap2"> middle view <view id="inner" bindtap="handleTap3"> inner vi 阅读全文
摘要:
先说一下vuex到底是什么? vuex 是一个专门为vue.js应用程序开发的状态管理模式。 这个状态我们可以理解为在data中的属性,需要共享给其他组件使用的部分。 也就是说,是我们需要共享的data,使用vuex进行统一集中式的管理。 vuex中,有默认的五种基本的对象: state:存储状态(变量) getters:对数据获取之前的再次编译,可以理解为state的计算属性。我... 阅读全文
摘要:
<template> <div id="appp" class="app" > <header> <a href="javascript:void(0);" :class="active == '#home' ? 'active' : ''" @click="toTarget('#home')">首页</a> <a href="javascript:void 阅读全文
摘要:
//html部分 <el-menu background-color="#3f4d67" text-color="#fff" :default-active="$route.path" :unique-opened="true" :router="true" mode="vertical" > <template v-for="item in menu"> <!-- 多级菜单外壳 --> <el- 阅读全文