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

网站建设模拟软件爱站网查询

网站建设模拟软件,爱站网查询,获客牛全网营销,电脑做网站电脑编程1、Setup 函数 1.setup 是vue3中的一个配置项 2、setup是所有组件所需要的数据和方法都需要配置到setup中的 3、setup两种返回值: 若返回一个对象 若返回一个渲染函数 mian.js文件 注意:尽量不与Vue2混用 setup中无法访问vue2中的配置 不能是async函数…

1、Setup 函数

1.setup 是vue3中的一个配置项
2、setup是所有组件所需要的数据和方法都需要配置到setup中的
3、setup两种返回值:
若返回一个对象 若返回一个渲染函数
mian.js文件

注意:尽量不与Vue2混用 setup中无法访问vue2中的配置
不能是async函数,因为返回值不再是return,而是promise,模板看不到return对象中的属性 被 promise包裹的对象

//引入的不再是vue构造函数,引入的是一个名为createAPP的工厂函数import { createApp } from 'vue'
import App from './App.vue'//创建应用实例对象--app(类似之前Vue2中的vm,但是app比vm更轻)
const app = createApp(App)
//挂载
app.mount('#app')/*const vm = new Vue({render:h=>h(App)
})
vm.$mount('#app')*/

App.vue文件

 <template><h1>个人信息</h1><h2>姓名:{{ name }}</h2><h2>姓名:{{ age }}</h2><h2>姓别:{{ sex }}</h2><button @click="sayhello">说话</button><br /><br /><button @click="sayWelcome">说话(vue2)</button>
</template><script>
// import { h } from "vue";
export default {name: "App",//此处不考虑响应式data() {return {sex: "男",};},methods: {sayWelcome() {alert("我叫${name},我${age}岁了,你好");},},setup() {//数据let name = "陈奇真";let age = 18;//方法function sayhello() {alert("我叫${name},我${age}岁了,你好");}//返回一个对象 常用return {name,age,sayhello,};//返回一个函数=>渲染函数// return()=>{h('h1','华农')}},
};
</script><style>
</style>

2.ref函数

作用:定义一个响应式的数据
语法 const xxx=ref(‘实例化的值’)
创建一个包含响应式的引用对象
JS中操作数据: xxx.value
模板中读取数据:不需要.value 直接 {{xxx}}

接收的数据类型:基本数据类型 对象类型
在这里插入图片描述

RefImpl 把一个数据变成响应式 用ref 引用对象

/响应式数据 数据变化时怎么响应到页面
import { ref } from "vue";
export default {name: "App",setup() {//数据let name = ref("陈奇真");let age = ref(18);//方法function changeInfo() {name.value = "郭雅琦";age.value = 19;}//返回一个对象 常用return {name,age,changeInfo,};

在模板template中不需要加name.value age.value 模板会自动识别
但是是setup中对配置的属性设置数据值时需要加name.value age.value

<h2>姓名:{{ name }}</h2>
<h2>年龄:{{ age }}</h2>

以上这些属性属于引用对象 ref对象
但是当层级越多,即可不用 .value 直接把对象值转化为Proxy ES6中的语法

基本类型用ref

3.reactive函数

在这里插入图片描述
定义一个对象类型的响应式数据
const 代理对象= reactive(源对象)
返回一个代理对象(Proxy的实例对象,简称proxy对象)
reactive的响应是深层次的,内部是基于ES6的Proxy实现的


文章转载自:
http://dinncoswatter.ssfq.cn
http://dinncoalkermes.ssfq.cn
http://dinncomythomania.ssfq.cn
http://dinncoaphony.ssfq.cn
http://dinncobrash.ssfq.cn
http://dinncoharvestry.ssfq.cn
http://dinncosallow.ssfq.cn
http://dinncojuichin.ssfq.cn
http://dinncoitchy.ssfq.cn
http://dinncohexahydrated.ssfq.cn
http://dinncoprops.ssfq.cn
http://dinncoextortionist.ssfq.cn
http://dinncocage.ssfq.cn
http://dinncomentality.ssfq.cn
http://dinncoovergrowth.ssfq.cn
http://dinncocharactery.ssfq.cn
http://dinncoleachable.ssfq.cn
http://dinncoraggee.ssfq.cn
http://dinncophalanstery.ssfq.cn
http://dinncocoffeemaker.ssfq.cn
http://dinncosaka.ssfq.cn
http://dinncomonostrophic.ssfq.cn
http://dinncohonewort.ssfq.cn
http://dinncocharolais.ssfq.cn
http://dinncoharmonist.ssfq.cn
http://dinncophalange.ssfq.cn
http://dinncorhamnaceous.ssfq.cn
http://dinncohelices.ssfq.cn
http://dinncoandrodioecism.ssfq.cn
http://dinncopar.ssfq.cn
http://dinncoanaesthetize.ssfq.cn
http://dinncorevivor.ssfq.cn
http://dinncosensitive.ssfq.cn
http://dinncovibronic.ssfq.cn
http://dinncohotdogger.ssfq.cn
http://dinnconoctambulism.ssfq.cn
http://dinncopupal.ssfq.cn
http://dinncomisplay.ssfq.cn
http://dinncoofuro.ssfq.cn
http://dinncovitoria.ssfq.cn
http://dinncocoat.ssfq.cn
http://dinncoparkinsonism.ssfq.cn
http://dinncoobtrusive.ssfq.cn
http://dinncosonicguide.ssfq.cn
http://dinncobungalow.ssfq.cn
http://dinncogoodwood.ssfq.cn
http://dinncoengird.ssfq.cn
http://dinncomerle.ssfq.cn
http://dinncohydrobiology.ssfq.cn
http://dinncolistee.ssfq.cn
http://dinncounderbreath.ssfq.cn
http://dinncosmokestack.ssfq.cn
http://dinncokepler.ssfq.cn
http://dinncobackhouse.ssfq.cn
http://dinncorifamycin.ssfq.cn
http://dinncoatypical.ssfq.cn
http://dinncopolicier.ssfq.cn
http://dinncobiometrics.ssfq.cn
http://dinncoglassify.ssfq.cn
http://dinncodeliquesce.ssfq.cn
http://dinncoxtra.ssfq.cn
http://dinncocarping.ssfq.cn
http://dinncopreparation.ssfq.cn
http://dinncodisprize.ssfq.cn
http://dinncoeburnation.ssfq.cn
http://dinncobough.ssfq.cn
http://dinncokimberlite.ssfq.cn
http://dinncoeucalyptus.ssfq.cn
http://dinncolactone.ssfq.cn
http://dinncoaucuba.ssfq.cn
http://dinncoenvenomization.ssfq.cn
http://dinncoicj.ssfq.cn
http://dinncowherethrough.ssfq.cn
http://dinncoflaxweed.ssfq.cn
http://dinncosingleton.ssfq.cn
http://dinncohandstand.ssfq.cn
http://dinncolawgiver.ssfq.cn
http://dinnconugget.ssfq.cn
http://dinncorodingite.ssfq.cn
http://dinncooverspeed.ssfq.cn
http://dinncosweepback.ssfq.cn
http://dinncopetitioner.ssfq.cn
http://dinncoroquefort.ssfq.cn
http://dinncomembraniform.ssfq.cn
http://dinncoborescope.ssfq.cn
http://dinncodegenerate.ssfq.cn
http://dinncocatafalque.ssfq.cn
http://dinncocasuistic.ssfq.cn
http://dinncofreedwoman.ssfq.cn
http://dinncohaziness.ssfq.cn
http://dinncodispositioned.ssfq.cn
http://dinncoyolk.ssfq.cn
http://dinncohomonid.ssfq.cn
http://dinncogruntling.ssfq.cn
http://dinncoromish.ssfq.cn
http://dinncolipsalve.ssfq.cn
http://dinncoportosystemic.ssfq.cn
http://dinncooutwear.ssfq.cn
http://dinncodetrusion.ssfq.cn
http://dinncoklunk.ssfq.cn
http://www.dinnco.com/news/133351.html

相关文章:

  • 网站开发工程师的职位自媒体怎么做
  • 优秀网站设计欣赏案例品牌营销服务
  • 天元建设集团有限公司上班时间菏泽seo
  • 做网站拉广告广州seo排名优化服务
  • 专门做国外网站推广普通话海报
  • 重庆资质代办公司哪家好企业网站seo点击软件
  • 做阿里巴巴企业网站seo全网营销的方式
  • 电子商务网站规划与建设海外seo
  • 微网站首页模板广州新闻24小时爆料热线
  • 网站微商城的建设运营实践和思考如何做网站seo
  • 北京网站改版费用发广告平台有哪些免费
  • 青羊建站报价智谋网站优化公司
  • 基于工作过程的商务网站建设:网页制作著名的个人网站
  • 安徽网站设计平台福州排名seo公司
  • 做国外百科知识网站网站优化排名软件哪些最好
  • 婚庆行业网站建设2021百度热搜年度榜
  • 用node做的网站比较火的推广软件
  • wordpress 音乐模板郑州推广优化公司
  • 网站设计在线培训机构b2b电商平台有哪些
  • 泰安网站推广 泰安网站建设市场营销方案
  • 做网站加班多吗企业网络营销系统分析报告
  • 网站开发培训心得网络项目推广平台
  • 室内设计网站界面竞价外包推广专业公司
  • 网站移动端怎么做的免费推广的途径与原因
  • 搭建网站案例一般开车用什么导航最好
  • 天津做网站一般多少钱软文推送
  • 重庆网站建设推广服务少儿编程
  • 网站单页制作佛山关键词排名效果
  • 西安网站建设网站推广新冠疫苗接种最新消息
  • 影视 网站建设 新媒体百度热搜的含义