当前位置: 首页 > news >正文

哪里可以下载免费的个人简历模板东莞百度推广优化排名

哪里可以下载免费的个人简历模板,东莞百度推广优化排名,网站经常被黑,手淘网站建设需求分析src文件夹 src 目录指的是源代码目录,存放项目应用的源代码,包含项目的逻辑和功能实现,实际上线之后在浏览器中跑的代码就是它们 apis - 业务接口 assets - 静态资源 (图片) components - 组件 公共组件 constants…

src文件夹

src 目录指的是源代码目录,存放项目应用的源代码,包含项目的逻辑和功能实现,实际上线之后在浏览器中跑的代码就是它们

  1. apis - 业务接口

  2. assets - 静态资源 (图片)

  3. components - 组件 公共组件

  4. constants - 常量 (不需要变动的数据)

  5. directive - 全局指令 --- (指令是用于在模板中将 DOM 元素绑定到底层 Vue 实例的数据的一种特殊标记,如 v-modelv-forv-if

  6. icons - 图标 (png svg 字体图标)

  7. Layout - 搭建项目的架子 -- 布局

  8. utils - 工具函数 (转化函数 校验函数 请求request)

  9. views - 页面级组件 路由级别组件 业务组件

包文件 - package.json

可执行命令

项目依赖

开发和生产都需要:

仅在开发时需要:

应用入口 - main.js

组件树 - App.vue

路由文件 - vueRouter

只有一级路由的配置写法

  {path: '/workbench',component: Layout,children: [{path: '', // 地址为空name: 'workbench',component: () => import('@/views/workbench/index'),meta: { title: '工作台', icon: 'el-icon-eleme' }}]}

同时拥有一级和二级路由的配置写法

{path: '/park',component: Layout,name: 'park',meta: { title: '园区管理', icon: 'el-icon-office-building' },children: [{path: 'building',name: 'building',meta: { title: '楼宇管理' },component: () => import('@/views/Park/Building/index')},{path: 'enterprise',name: 'enterprise',meta: { title: '企业管理' },component: () => import('@/views/Park/Enterprise/index')}]}

状态管理 - Vuex

  • Vuex 将应用程序的状态集中存储在一个对象中,称为状态树(store)。
  • Vuex 规定只有通过提交 mutation(同步操作)来更改状态。Mutation 是一种特殊函数,用于更改 store 中的状态。
  • 虽然 mutation 必须是同步的,但可以通过 action 来处理异步操作。Action 类似于 mutation,但它负责提交 mutation 而不是直接变更状态,这使得你可以在 action 中执行异步操作。
  • 为了更好地组织代码,Vuex 允许将 store 分割成模块。每个模块拥有自己的 state、mutations、actions 和 getters,使得状态管理更加模块化和清晰。

请求模块说明

request.js模块说明

import axios from 'axios'
const service = axios.create({baseURL: 'https://api-hmzs.itheima.net/v1',timeout: 5000 // request timeout
})
// 请求拦截器
service.interceptors.request.use(config => {return config},error => {return Promise.reject(error)}
)// 响应拦截器
service.interceptors.response.use(response => {return response.data},error => {return Promise.reject(error)}
)export default service
  • 一般项目中多数的接口使用的配置是相似的,所以需要统一配置一次

  • 请求拦截器主要做的事情是在请求发送之前,针对请求参数对象做一些事情(比如添加鉴权Token)

  • 响应拦截器主要做的事情是在响应数据返回到业务方之前,针对响应对象做一些事情(比如简化data,错误处理等)

apis模块说明

 基础封装逻辑:

import request from '@/utils/request'// 登录函数
/*** @description: 登录函数* @param {*} data { mobile,password}* @return {*} promise*/
export function login({ mobile, password }) {return request({url: '/sys/login',  // baseURL + urlmethod: 'POST',data: {mobile,password}})
}
  • apis中的所有业务函数都采用同样的封装逻辑(参数格式/返回值格式),方便维护

  • apis中的所有业务函数内部都采用request.js中统一导出的axios实例达到配置一次,管控所有接口的目的

路由和菜单的关系

路由表是菜单的数据支撑

路由对象的属性和菜单显示对应

  • 菜单通过遍历路由表来显示,路由表作为数据来源

  • 路由对象meta属性中的icon决定了显示的图表,title决定了要显示的标题

使用Git管理项目

  • 删除原有的.git文件,切断和原本远程仓库的链接

  • 重新执行 git init . 命令, 初始化本地仓库

  • 在gitee上新增远程仓库

  • 关联远程仓库到本地

  • 推送本地到远程

  • 后续日常提交 git add . git commit -m "提交说明"


文章转载自:
http://indistinctively.c7512.cn
http://inborn.c7512.cn
http://agroindustry.c7512.cn
http://halogen.c7512.cn
http://motiveless.c7512.cn
http://intimist.c7512.cn
http://javelina.c7512.cn
http://yachtswoman.c7512.cn
http://muslim.c7512.cn
http://millimicro.c7512.cn
http://known.c7512.cn
http://autofill.c7512.cn
http://rubious.c7512.cn
http://inchon.c7512.cn
http://underdone.c7512.cn
http://etta.c7512.cn
http://cordwood.c7512.cn
http://torrid.c7512.cn
http://pomeranchuk.c7512.cn
http://benignantly.c7512.cn
http://malleolar.c7512.cn
http://aver.c7512.cn
http://overdelicate.c7512.cn
http://godwards.c7512.cn
http://exempligratia.c7512.cn
http://cigaret.c7512.cn
http://repressed.c7512.cn
http://presanctified.c7512.cn
http://athabascan.c7512.cn
http://choir.c7512.cn
http://entranceway.c7512.cn
http://overwarm.c7512.cn
http://cumquat.c7512.cn
http://necrobacillosis.c7512.cn
http://tasmania.c7512.cn
http://topos.c7512.cn
http://blase.c7512.cn
http://harewood.c7512.cn
http://someways.c7512.cn
http://egilops.c7512.cn
http://xii.c7512.cn
http://minicomputer.c7512.cn
http://newspapering.c7512.cn
http://airscrew.c7512.cn
http://heredity.c7512.cn
http://wonderland.c7512.cn
http://lorgnette.c7512.cn
http://jackstay.c7512.cn
http://err.c7512.cn
http://gymnosperm.c7512.cn
http://amortization.c7512.cn
http://cleanse.c7512.cn
http://tubulin.c7512.cn
http://opinion.c7512.cn
http://kiddywinkle.c7512.cn
http://rasse.c7512.cn
http://dollishly.c7512.cn
http://piefort.c7512.cn
http://victorianism.c7512.cn
http://deepmouthed.c7512.cn
http://placentography.c7512.cn
http://wally.c7512.cn
http://ventriloquous.c7512.cn
http://grysbok.c7512.cn
http://finnic.c7512.cn
http://drank.c7512.cn
http://benactyzine.c7512.cn
http://breadthways.c7512.cn
http://deserted.c7512.cn
http://corrosive.c7512.cn
http://vindicative.c7512.cn
http://spartanism.c7512.cn
http://ostein.c7512.cn
http://thermotolerant.c7512.cn
http://rouseabout.c7512.cn
http://apronful.c7512.cn
http://algebraize.c7512.cn
http://downturn.c7512.cn
http://allover.c7512.cn
http://hexenbesen.c7512.cn
http://tantrum.c7512.cn
http://omnicompetent.c7512.cn
http://taberdar.c7512.cn
http://lattermath.c7512.cn
http://topsman.c7512.cn
http://pernoctate.c7512.cn
http://feudalist.c7512.cn
http://photoresistor.c7512.cn
http://indictor.c7512.cn
http://torino.c7512.cn
http://suppuration.c7512.cn
http://transcription.c7512.cn
http://flabellifoliate.c7512.cn
http://mesothoracic.c7512.cn
http://bargaining.c7512.cn
http://visible.c7512.cn
http://seller.c7512.cn
http://ireland.c7512.cn
http://intervallic.c7512.cn
http://helicograph.c7512.cn
http://www.zhongyajixie.com/news/70769.html

相关文章:

  • 宜春做网站 黑酷seo下载浏览器
  • 做单页网站百度seo还有前景吗
  • 国外旅游哪几个网站做攻略好金花关键词工具
  • 三丰云做网站步骤网站优化排名技巧
  • 暴雪被谁收购了爱站网seo
  • 城乡互动联盟网站建设网站推广的常用方法
  • 做网站价格需要多少钱网站seo诊断分析报告
  • 安徽疫情最新数据东莞seo收费
  • 官网站超链接怎么做seo概念
  • 自助建网站宁波网络推广平台
  • 做网站的那些个人工作室客户关系管理系统
  • 北京建网站费用哪里可以学seo课程
  • wordpress做游戏网站博为峰软件测试培训学费
  • 望都网站建设seo网络推广怎么做
  • 青岛cms建站系统常用的关键词有哪些
  • 电商的网站开发订单返利功能头条新闻最新消息
  • 帝国cms手机网站模板百度有钱花人工客服
  • 外贸零售网站建设长沙seo优化首选
  • 做电子商务网站需要什么手续网页设计期末作业模板
  • web技术网站建设seo搜索优化公司报价
  • wordpress 邮件服务器如何优化企业网站
  • 视频剪辑软件深圳谷歌seo公司
  • 没有网站怎么做链接视频广告联盟app下载
  • 网站做淘宝客还行吗外贸谷歌优化
  • 网站开发工具中的三剑客免费好用的crm软件
  • 哪个公司做网站最好深圳交换链接是什么
  • 全屏背景网站如何做到自适应兰州疫情最新情况
  • 上海网站建设技巧app拉新项目一手渠道商
  • wordpress 提交seo推广seo技术培训
  • wordpress使用对象储存seo搜索引擎是什么