09 2021 档案

摘要:检查是否安装了MySQL组件 rpm -qa | grep -i mysql 卸载前关闭MySQL服务 sudo systemctl status mysqld sudo systemctl stop mysqld 收集MySQL对应的文件夹信息 whereis mysql find / -name 阅读全文
posted @ 2021-09-29 21:41 残星 阅读(158) 评论(0) 推荐(0) 编辑
摘要:https://dev.mysql.com/downloads/repo/yum/ 下载mysql wget https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm sudo rpm -ivh mysql80-commun 阅读全文
posted @ 2021-09-28 22:13 残星 阅读(41) 评论(0) 推荐(0) 编辑
摘要:https://www.zentao.net/index.html 阅读全文
posted @ 2021-09-27 23:09 残星 阅读(38) 评论(0) 推荐(0) 编辑
摘要:服务器新安装没有安装gcc环境,需要安装gcc环境,使用yum安装yum install gcc 检查gcc环境是否安装好rpm -qa|grep gcc 然后删掉redis目录,在继续操作,成功。 rm -rf redis 阅读全文
posted @ 2021-09-27 19:55 残星 阅读(603) 评论(0) 推荐(0) 编辑
摘要:Redis版本 6.2.5 服务器版本 Linux CentOS 7.8 64位 下载Redis 进入官网找到下载地址 https://redis.io/download 右键Download按钮,选择复制链接。进入到Xshell控制台(默认当前是root根目录),输入wget 将上面复制的下载链接 阅读全文
posted @ 2021-09-27 17:14 残星 阅读(183) 评论(0) 推荐(0) 编辑
摘要:moduleA.ts const moduleA = { // strict:true, // strict:process.env.NODE_NEV !== 'production', // 全局共享的状态(数据)存放 state: { counter : 0 }, getters: { }, / 阅读全文
posted @ 2021-09-15 21:39 残星 阅读(305) 评论(0) 推荐(0) 编辑
摘要:state.ts export default { todos:[ {id:1,name:'张三'}, {id:2,name:'李四'}, {id:3,name:'王五'} ] } getters.ts export default { todosCount(state: { todos: stri 阅读全文
posted @ 2021-09-11 20:18 残星 阅读(69) 评论(0) 推荐(0) 编辑
摘要:index.ts import { createStore } from 'vuex' const store = createStore({ // strict:true, // strict:process.env.NODE_NEV !== 'production', // 全局共享的状态(数据 阅读全文
posted @ 2021-09-10 23:11 残星 阅读(105) 评论(0) 推荐(0) 编辑
摘要:Test9.vue <template> <div id="test9_body"> <div id="header"><h1>上标题</h1></div> <div id="body"> <div id="navl"> 左导航 <div> Test9 <div> <button @click="g 阅读全文
posted @ 2021-09-08 21:21 残星 阅读(40) 评论(0) 推荐(0) 编辑
摘要:Test7.vue <template> <div id="test7_body"> <div id="header"><h1>上标题</h1></div> <div id="body"> <div id="navl"> 左导航 <div> Test7 <div> <router-link :to= 阅读全文
posted @ 2021-09-06 15:52 残星 阅读(92) 评论(0) 推荐(0) 编辑
摘要:App.vue <template> <div id="nav"> <!-- 导航 --> <router-link to="/" active-class="current" replace>Home</router-link> | <router-link to="/about" active- 阅读全文
posted @ 2021-09-05 16:12 残星 阅读(110) 评论(0) 推荐(0) 编辑
摘要:App.vue <template> <div id="nav"> <!-- 导航 --> <router-link to="/" active-class="current" replace>Home</router-link> | <router-link to="/about" active- 阅读全文
posted @ 2021-09-04 19:09 残星 阅读(103) 评论(0) 推荐(0) 编辑
摘要:App.vue <template> <div id="nav"> <!-- 导航 --> <router-link to="/" active-class="current" replace>Home</router-link> | <router-link to="/about" active- 阅读全文
posted @ 2021-09-03 13:47 残星 阅读(64) 评论(0) 推荐(0) 编辑
摘要:index.js //引入 import { createRouter, createWebHashHistory } from 'vue-router' // import Home from '../views/Home.vue' // import Test3 from '../views/T 阅读全文
posted @ 2021-09-01 14:01 残星 阅读(82) 评论(0) 推荐(0) 编辑
摘要:App.vue <template> <div id="nav"> <!-- 导航 --> <router-link to="/" active-class="current" replace>Home</router-link> | <router-link to="/about" active- 阅读全文
posted @ 2021-09-01 13:39 残星 阅读(420) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示