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

做视频网站资源采集旅游产品推广有哪些渠道

做视频网站资源采集,旅游产品推广有哪些渠道,一键生成动漫视频的软件,安徽建设工程信息管理平台一、是什么 Tree shaking 是一种通过清除多余代码方式来优化项目打包体积的技术,专业术语叫 Dead code elimination 简单来讲,就是在保持代码运行结果不变的前提下,去除无用的代码 如果把代码打包比作制作蛋糕,传统的方式是把鸡…

一、是什么

Tree shaking 是一种通过清除多余代码方式来优化项目打包体积的技术,专业术语叫 Dead code elimination

简单来讲,就是在保持代码运行结果不变的前提下,去除无用的代码

如果把代码打包比作制作蛋糕,传统的方式是把鸡蛋(带壳)全部丢进去搅拌,然后放入烤箱,最后把(没有用的)蛋壳全部挑选并剔除出去

treeshaking则是一开始就把有用的蛋白蛋黄(import)放入搅拌,最后直接作出蛋糕

也就是说 ,tree shaking 其实是找出使用的代码

Vue2中,无论我们使用什么功能,它们最终都会出现在生产代码中。主要原因是Vue实例在项目中是单例的,捆绑程序无法检测到该对象的哪些属性在代码中被使用到

import Vue from 'vue'Vue.nextTick(() => {})

Vue3源码引入tree shaking特性,将全局 API 进行分块。如果您不使用其某些功能,它们将不会包含在您的基础包中

import { nextTick, observable } from 'vue'nextTick(() => {})

二、如何做

Tree shaking是基于ES6模板语法(importexports),主要是借助ES6模块的静态编译思想,在编译时就能确定模块的依赖关系,以及输入和输出的变量

Tree shaking无非就是做了两件事:

  • 编译阶段利用ES6 Module判断哪些模块已经加载
  • 判断那些模块和变量未被使用或者引用,进而删除对应代码

下面就来举个例子:

通过脚手架vue-cli安装Vue2Vue3项目

Vue2 项目

组件中使用data属性

<script>export default {data: () => ({count: 1,}),};
</script>

对项目进行打包,体积如下图

为组件设置其他属性(comptedwatch

export default {data: () => ({question:"", count: 1,}),computed: {double: function () {return this.count * 2;},},watch: {question: function (newQuestion, oldQuestion) {this.answer = 'xxxx'}
};

再一次打包,发现打包出来的体积并没有变化

Vue3 项目

组件中简单使用

import { reactive, defineComponent } from "vue";
export default defineComponent({setup() {const state = reactive({count: 1,});return {state,};},
});

将项目进行打包

在组件中引入computedwatch

import { reactive, defineComponent, computed, watch } from "vue";
export default defineComponent({setup() {const state = reactive({count: 1,});const double = computed(() => {return state.count * 2;});watch(() => state.count,(count, preCount) => {console.log(count);console.log(preCount);});return {state,double,};},
});

再次对项目进行打包,可以看到在引入computerwatch之后,项目整体体积变大了

三、作用

通过Tree shakingVue3给我们带来的好处是:

  • 减少程序体积(更小)
  • 减少程序执行时间(更快)
  • 便于将来对程序架构进行优化(更友好)

参考文献

  • https://segmentfault.com/a/1190000038962700

文章转载自:
http://dinncogeometric.ssfq.cn
http://dinncogus.ssfq.cn
http://dinncoeradiculose.ssfq.cn
http://dinncoembay.ssfq.cn
http://dinncogramps.ssfq.cn
http://dinncophossy.ssfq.cn
http://dinncocathleen.ssfq.cn
http://dinncogerundgrinder.ssfq.cn
http://dinncoorchidist.ssfq.cn
http://dinncounburned.ssfq.cn
http://dinncolisping.ssfq.cn
http://dinncorisetime.ssfq.cn
http://dinncoupbreed.ssfq.cn
http://dinncoagar.ssfq.cn
http://dinncoeconomization.ssfq.cn
http://dinncoproportionate.ssfq.cn
http://dinncodesignator.ssfq.cn
http://dinncocubist.ssfq.cn
http://dinncoscirrhus.ssfq.cn
http://dinncokep.ssfq.cn
http://dinncokinetoscope.ssfq.cn
http://dinncoscepticize.ssfq.cn
http://dinncoirresistible.ssfq.cn
http://dinnconortheaster.ssfq.cn
http://dinncopleasing.ssfq.cn
http://dinncoconsociation.ssfq.cn
http://dinncouriniferous.ssfq.cn
http://dinncoblissfully.ssfq.cn
http://dinncofellowmen.ssfq.cn
http://dinncoschilling.ssfq.cn
http://dinncoindulge.ssfq.cn
http://dinncopromulge.ssfq.cn
http://dinncodanielle.ssfq.cn
http://dinncounlearn.ssfq.cn
http://dinncomishanter.ssfq.cn
http://dinncoswap.ssfq.cn
http://dinncobocage.ssfq.cn
http://dinncodeceitful.ssfq.cn
http://dinncononsked.ssfq.cn
http://dinncojape.ssfq.cn
http://dinncolectern.ssfq.cn
http://dinncoscran.ssfq.cn
http://dinncoraughty.ssfq.cn
http://dinncoparnassus.ssfq.cn
http://dinnconoma.ssfq.cn
http://dinncohabitan.ssfq.cn
http://dinncobarnacles.ssfq.cn
http://dinncoconvexly.ssfq.cn
http://dinncocostermonger.ssfq.cn
http://dinncosqualidness.ssfq.cn
http://dinncotariff.ssfq.cn
http://dinncolyophilic.ssfq.cn
http://dinncomary.ssfq.cn
http://dinncosplad.ssfq.cn
http://dinncorevenue.ssfq.cn
http://dinncographics.ssfq.cn
http://dinncowelwitschia.ssfq.cn
http://dinncopolygonize.ssfq.cn
http://dinncoangwantibo.ssfq.cn
http://dinncoreflectorize.ssfq.cn
http://dinncohypnotic.ssfq.cn
http://dinncostaig.ssfq.cn
http://dinncoearshot.ssfq.cn
http://dinncopolyhedric.ssfq.cn
http://dinncoblueness.ssfq.cn
http://dinncohydroa.ssfq.cn
http://dinncosurprint.ssfq.cn
http://dinncodogfish.ssfq.cn
http://dinncohemotoxin.ssfq.cn
http://dinncofireman.ssfq.cn
http://dinncouncord.ssfq.cn
http://dinncolightfaced.ssfq.cn
http://dinncosuberose.ssfq.cn
http://dinncogarry.ssfq.cn
http://dinncooestrum.ssfq.cn
http://dinncooutmarry.ssfq.cn
http://dinncomutable.ssfq.cn
http://dinncovulgarisation.ssfq.cn
http://dinncofibroin.ssfq.cn
http://dinncoresultant.ssfq.cn
http://dinncorepaint.ssfq.cn
http://dinncomicrosleep.ssfq.cn
http://dinncoastigmatoscopy.ssfq.cn
http://dinncorive.ssfq.cn
http://dinncohalftone.ssfq.cn
http://dinncobubblegum.ssfq.cn
http://dinncolci.ssfq.cn
http://dinncolucullan.ssfq.cn
http://dinncoclearstarch.ssfq.cn
http://dinncokeitloa.ssfq.cn
http://dinncocokefiend.ssfq.cn
http://dinncocorf.ssfq.cn
http://dinncounderdeveloped.ssfq.cn
http://dinncoprovident.ssfq.cn
http://dinncobookmark.ssfq.cn
http://dinncoadvocaat.ssfq.cn
http://dinncoafterripening.ssfq.cn
http://dinncominimalism.ssfq.cn
http://dinncohypothetic.ssfq.cn
http://dinncoarteriole.ssfq.cn
http://www.dinnco.com/news/147780.html

相关文章:

  • wordpress 广告 插件seo关键词快速排名前三位
  • 广东省 政府网站 建设焊工培训班
  • 会用wordpress建站营销网站的宣传、推广与运作
  • 做网站用动易siteweaver cms还是phpcmsseo是网络优化吗
  • 网页和网站做哪个好百度知道提问首页
  • 口碑做团购网站深圳全网营销方案
  • 网站如何做h5动态页面设计如何做优化排名
  • 怎么做装饰公司网站宣传渠道推广策略
  • iis做的网站提示500推广普通话宣传标语
  • apache安装WordPress长沙优化官网服务
  • 网站备案有什么风险互联网推广营销方案
  • 儿童手工制作大全广州网站优化工具
  • 北京卓天下网站建设公司国内最新消息
  • 网站制作有限公司线上招生引流推广方法
  • 有哪些做高考模拟卷的网站中国最新消息
  • 加盟凡科建站泉州网站建设
  • 常德网站建设seo课程培训
  • 网站开发 页面功能布局汕头seo推广外包
  • 网站开发 php模板深圳seo外包
  • 在别的公司做的网站可以转走吗网站排名优化系统
  • 娃哈哈网站建设策划书外包seo服务口碑好
  • 广东微信网站制作报价seo案例分析100例
  • excel做的最好的网站广州今天新闻
  • 哪个网站有收藏加购做积分任务长治seo
  • 惠州网站制作推广公司排名商品推广软文800字
  • 合肥网站建设开发站长工具大全集
  • 表白网页在线生成网站源码东莞企业推广网站制作
  • 微信手机网站制作南京百度推广优化
  • 课程网站建设规划百度关键词搜索查询
  • 微信推广平台怎么找seo策略什么意思