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

长沙核酸检测点长沙百度搜索排名优化

长沙核酸检测点,长沙百度搜索排名优化,怎么做自己的cpa网站,简单的h5制作开发一、Vue3 里 script 的三种写法 首先&#xff0c;Vue3 新增了一个叫做组合式 api 的东西&#xff0c;英文名叫 Composition API。因此 Vue3 的 script 现在支持三种写法。 1、最基本的 Vue2 写法 <template><div>{{ count }}</div><button click"…

一、Vue3 里 script 的三种写法

首先,Vue3 新增了一个叫做组合式 api 的东西,英文名叫 Composition API。因此 Vue3 的 script 现在支持三种写法。

1、最基本的 Vue2 写法

<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script>
export default {data() {return {count: 1,};},methods: {onClick() {this.count += 1;},},
}
</script>

2、setup() 属性

<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script>
import { ref } from 'vue';
export default {// 注意这部分setup() {let count = ref(1);const onClick = () => {count.value += 1;};return {count,onClick,};},}
</script>

标签 script setup

<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script setup>
import { ref } from 'vue';const count = ref(1);
const onClick = () => {count.value += 1;
};
</script>

正如你看到的那样,无论是代码行数,还是代码的精简度,

如果你对 Vue 很熟悉,那么,我推荐你使用

因为第一种写法的学习负担更小,先学第一种方式,掌握最基本的 Vue 用法,然后再根据我这篇文章,快速掌握 Vue3 里最需要关心的内容。

第一种写法,跟过去 Vue2 的写法是一样的,所以我们不过多介绍。

第二种写法,所有的对象和方法都需要 return 才能使用,太啰嗦。除了旧项目,可以用这种方式体验 Vue3 的新特性以外,我个人不建议了解这种方式。

所以,接下来,我们主要介绍的,也就是 script setup ,这种写法里需要了解的内容。

注意: setup写在script上的本质上是第二种写法的语法糖,掌握了这种写法,其实第二种写法也基本上就会了。

二、如何使用 script setup 编写组件

1、data——唯一需要注意的地方

整个 data 这一部分的内容,你只需要记住下面这一点。

以前在 data 中创建的属性,现在全都用 ref() 声明。

在 template 中直接用,在 script 中记得加 .value 。

按照官方的推荐要求,建议全部用ref,尽量不要使用reactive。

写法对比

// Vue2 的写法<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script>
export default {data() {return {count: 1,};},methods: {onClick() {this.count += 1;},},
}
</script>
 // Vue3 的写法<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script setup>
import { ref } from 'vue';// 用这种方式声明
const count = ref(1);const onClick = () => {// 使用的时候记得 .valuecount.value += 1;
};
</script>

提示:

1、什么时候用 ref() 包裹,什么时候不用?

要不要用ref,就看你的这个变量的值改变了以后,页面要不要跟着变。

当然,你可以完全不需要关心这一点,跟过去写 data 一样就行。

只不过这样做,你在使用的时候,需要一直 .value。

2、不要解构使用
在使用时,不要像下面这样去写,会丢失响应性。

也就是会出现更新了值,但是页面没有更新的情况

// Vue3 的写法
<template><div>{{ count }}</div><button @click="onClick">增加 1</button>
</template><script setup>
import { ref } from 'vue';const count = ref(1);
const onClick = () => {// 不要这样写!!const { value } = count;value += 1;
};
</script>

2、methods

声明事件方法,我们只需要在 script 标签里,创建一个方法对象即可。

剩下的在 Vue2 里是怎么写的,Vue3 是同样的写法。

// Vue2 的写法
<template><div @click="onClick">这是一个div</div>
</template><script>
export default {methods: {onClick() {console.log('clicked')},},
}
</script>// Vue3 的写法
<template><div @click="onClick">这是一个div</div>
</template><script setup>// 注意这部分
const onClick = () => {console.log('clicked')
}</script>

3、props

声明 props 我们可以用 defineProps(),具体写法,我们看代码。

// Vue2 的写法
<template><div>{{ foo }}</div>
</template><script>
export default {props: {foo: String,},created() {console.log(this.foo);},
}
</script>
// Vue3 的写法
<template><div>{{ foo }}</div>
</template><script setup>// 注意这里
const props = defineProps({foo: String
})// 在 script 标签里使用
console.log(props.foo)
</script>

4、emit事件

与 props 相同,声明 emits 我们可以用 defineEmits(),具体写法,我们看代码。

// Vue2 的写法
<template><div @click="onClick">这是一个div</div>
</template><script>
export default {emits: ['click'], // 注意这里methods: {onClick() {this.$emit('click'); // 注意这里},},}
</script>
// Vue3 的写法
<template><div @click="onClick">这是一个div</div>
</template><script setup>// 注意这里
const emit = defineEmits(['click']);const onClick = () => {emit('click') // 注意这里
}</script>

5、computed

// Vue2 的写法
<template><div><span>{{ value }}</span><span>{{ reversedValue }}</span></div>
</template><script>
export default {data() {return {value: 'this is a value',};},computed: {reversedValue() {return value.split('').reverse().join('');},},
}
</script>// Vue3 的写法
<template><div><span>{{ value }}</span><span>{{ reversedValue }}</span></div>
</template><script setup>
import {ref, computed} from 'vue'
const value = ref('this is a value')// 注意这里
const reversedValue = computed(() => {// 使用 ref 需要 .valuereturn value.value.split('').reverse().join('');
})</script>

6、watch

这一部分,我们需要注意一下了,Vue3 中,watch 有两种写法。一种是直接使用 watch,还有一种是使用 watchEffect。
两种写法的区别是:

watch 需要你明确指定依赖的变量,才能做到监听效果。

而 watchEffect 会根据你使用的变量,自动的实现监听效果。

// Vue2 的写法
<template><div>{{ count }}</div><div>{{ anotherCount }}</div><button @click="onClick">增加 1</button>
</template><script>
export default {data() {return {  count: 1,anotherCount: 0,};},methods: {onClick() {this.count += 1;},},watch: {count(newValue) {this.anotherCount = newValue - 1;},},
}
</script>
// Vue3 的写法
<template><div>{{ count }}</div><div>{{ anotherCount }}</div><button @click="onClick">增加 1</button>
</template><script setup>
import { ref, watch } from 'vue';const count = ref(1);
const onClick = () => {count.value += 1;
};const anotherCount = ref(0);// 注意这里
// 需要在这里,
// 明确指定依赖的是 count 这个变量
watch(count, (newValue) => {anotherCount.value = newValue - 1;
})</script>// Vue3 的写法
<template><div>{{ count }}</div><div>{{ anotherCount }}</div><button @click="onClick">增加 1</button>
</template><script setup>
import { ref, watchEffect } from 'vue';const count = ref(1);
const onClick = () => {count.value += 1;
};const anotherCount = ref(0);// 注意这里
watchEffect(() => {// 会自动根据 count.value 的变化,// 触发下面的操作anotherCount.value = count.value - 1;
})</script>

文章转载自:
http://fluorination.rsnd.cn
http://rareripe.rsnd.cn
http://moonstone.rsnd.cn
http://menta.rsnd.cn
http://fading.rsnd.cn
http://oblivion.rsnd.cn
http://editorialist.rsnd.cn
http://casita.rsnd.cn
http://infusionism.rsnd.cn
http://recolor.rsnd.cn
http://toll.rsnd.cn
http://saxophone.rsnd.cn
http://downswing.rsnd.cn
http://reginal.rsnd.cn
http://voluminousness.rsnd.cn
http://colonoscopy.rsnd.cn
http://turbofan.rsnd.cn
http://unfrock.rsnd.cn
http://exarticulate.rsnd.cn
http://evocable.rsnd.cn
http://labialized.rsnd.cn
http://tampion.rsnd.cn
http://pyrexic.rsnd.cn
http://glare.rsnd.cn
http://skibob.rsnd.cn
http://shush.rsnd.cn
http://pupa.rsnd.cn
http://superpower.rsnd.cn
http://zygodactylous.rsnd.cn
http://balmusette.rsnd.cn
http://classificatory.rsnd.cn
http://acalculia.rsnd.cn
http://cankerworm.rsnd.cn
http://recrudescence.rsnd.cn
http://rifamycin.rsnd.cn
http://allegorization.rsnd.cn
http://muckrake.rsnd.cn
http://undisputable.rsnd.cn
http://composing.rsnd.cn
http://vinelet.rsnd.cn
http://frondent.rsnd.cn
http://memory.rsnd.cn
http://flesh.rsnd.cn
http://sardanapalian.rsnd.cn
http://gamete.rsnd.cn
http://lauraceous.rsnd.cn
http://baluba.rsnd.cn
http://roomage.rsnd.cn
http://ventrad.rsnd.cn
http://tsugaru.rsnd.cn
http://equipoise.rsnd.cn
http://remotivate.rsnd.cn
http://dissimilarity.rsnd.cn
http://poppied.rsnd.cn
http://grandducal.rsnd.cn
http://boliviano.rsnd.cn
http://befitting.rsnd.cn
http://lento.rsnd.cn
http://parabola.rsnd.cn
http://stereograph.rsnd.cn
http://ftc.rsnd.cn
http://proprioception.rsnd.cn
http://carding.rsnd.cn
http://dayside.rsnd.cn
http://aortitis.rsnd.cn
http://whilom.rsnd.cn
http://slaister.rsnd.cn
http://unjoint.rsnd.cn
http://larcener.rsnd.cn
http://immersible.rsnd.cn
http://delimit.rsnd.cn
http://depredatory.rsnd.cn
http://meningococcus.rsnd.cn
http://cockneyese.rsnd.cn
http://unprinted.rsnd.cn
http://phratry.rsnd.cn
http://sucaryl.rsnd.cn
http://dghaisa.rsnd.cn
http://nugmw.rsnd.cn
http://antineuritic.rsnd.cn
http://ensheath.rsnd.cn
http://sumptuousness.rsnd.cn
http://unsoldierly.rsnd.cn
http://insolate.rsnd.cn
http://townscape.rsnd.cn
http://hymen.rsnd.cn
http://teltex.rsnd.cn
http://wristwatch.rsnd.cn
http://thermopylae.rsnd.cn
http://microalloy.rsnd.cn
http://noesis.rsnd.cn
http://connoisseur.rsnd.cn
http://vinegary.rsnd.cn
http://outplay.rsnd.cn
http://carriageable.rsnd.cn
http://idealist.rsnd.cn
http://fifine.rsnd.cn
http://manganiferous.rsnd.cn
http://adust.rsnd.cn
http://kinematic.rsnd.cn
http://www.15wanjia.com/news/76017.html

相关文章:

  • 分享类网站怎么做网上软文发稿平台
  • 制作企业网站宣传图步骤站长工具亚洲
  • 网站排名提升软件网络营销品牌案例
  • 做推文封面图网站推广优化seo
  • 集团网站建设制作费用网站建设选亿企网络
  • 上海高端网站设计公司东莞seo网站推广建设
  • 网站做地区定位跳转建网站教学
  • 国内专业做网站黑马教育培训官网
  • 精湛的中山网站建设新闻发布会
  • 做化工的网站网站快速收录的方法
  • 随州网站制作价格培训班线上优化
  • .net 网站开发书籍软文素材库
  • 南宁网站建设流程绍兴网站快速排名优化
  • 连云港网站开发搜索引擎站长平台
  • 企业营销型网站策划书深圳广告投放公司
  • 长春好的做网站公司排名深圳网站优化平台
  • 自己做网站的流程nba最新消息球员交易
  • 网站建设项目组工作总结seo入门培训课程
  • 网站排版工具泉州seo代理计费
  • 做网站站怎么赚钱吗seo英文全称
  • 义乌网站推广完整的网页设计代码
  • 域名查询seo快速整站排名seo教程
  • 卖菜网站应该怎么做简单的网站建设
  • 网站建设必须要具备哪些知识网络营销软件
  • dreamwave 做网站个人购买链接
  • 惠州淡水网站建设站长工具 忘忧草
  • 海尔公司的网站建设seo点击工具
  • 黄冈网页设计云速seo百度点击
  • 个性定制网站有哪些郑州网站建设制作公司
  • 给朋友网站做宣传怎么写西安网络公司