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

深圳 三人 网站建设网络营销公司是做什么的

深圳 三人 网站建设,网络营销公司是做什么的,西安网站建设风尚,专门做酒的网站有哪些一、Pinia介绍 定义:pinia是和vuex一样的状态管理工具 语法:和 Vue3 一样,它实现状态管理有两种语法:选项式API 和 组合式API 支持:vue2、typeScript、devtools 二、使用步骤 1.安装 pnpm add pinia yarn add pin…

一、Pinia介绍

定义:pinia是和vuex一样的状态管理工具

语法:和 Vue3 一样,它实现状态管理有两种语法:选项式API 和 组合式API

支持:vue2、typeScript、devtools

二、使用步骤

1.安装

pnpm add pinia

yarn add pinia

npm i pinia

2.在main.ts中导入,实例化

// 导入pinia
import { createPinia } from 'pinia'
const pinia = createPinia()// 挂载pinia
createApp(App).use(pinia).mount('#app')

3.创建pinia仓库并使用

(1)组合式API写法

创建:

import { defineStore } from 'pinia'
// import * as obj from 'pinia'  
// console.log(obj);   
import { ref } from 'vue'
/* 1.组合式pinia */
export const userStoreHr = defineStore('hr', () => {// (1)模拟statelet num = ref(100)const arr = ref([1, 2, 3, 4, 5])// (2)模拟mutationconst changeNum = () => {num.value += 100}// (3)模拟actionconst activeArr = () => {setTimeout(() => {const n = Math.floor(Math.random() * 10) + 1arr.value.push(n)}, 1000)}// (4)模拟gettersconst total = () => {return arr.value.reduce((sum, item) => item + sum, 0)}return { num, changeNum, activeArr, total }
})export default userStoreHr

使用:

<script setup lang="ts">
import { userStoreHr } from './store/hr'
const store = userStoreHr()
// console.log(store);
</script><template><div><div>app.vue</div><div>num:{{ store.num }} total:{{ store.total() }}</div><button @click="store.changeNum()">按钮1</button><button @click="store.activeArr()">按钮2</button>
</div>
</template>

(2)选项式API写法

创建:

// 创建pinia仓库
import { defineStore } from "pinia";export const useStoreTt = defineStore('tt', {state: () => {return {count: 10,price: 50}},actions: {addPrice() {this.price += 1console.log(this, '组合式API可以用this');}},getters: {/* 以下两种写法都可以 */// total(): number {//   return this.count * this.price// }  total: (state) => {return state.count * state.price}},
})export default useStoreTt

使用:

<script setup lang="ts">
import { useStoreTt } from './store/tt'
const store = useStoreTt()</script><template><div><div>app.vue</div><div>count :{{ store.count }} price : {{ store.price }}</div><div>total :{{ store.total }}</div><button @click="store.addPrice()">addPrice</button>
</div>
</template>

(3)storeToRefs的使用

解决:解构数据后,响应式失效的问题(不能解构函数)

<script setup lang="ts">
import { useStoreTt } from './store/tt'
// 导入storeToRefs 
import { storeToRefs } from 'pinia';
const store = useStoreTt()
// 解构的时候调用storeToRefs 
const { count, price } = storeToRefs(store)</script><template><div><div>app.vue</div><!-- 模板中直接使用 --><div>count :{{ count }} price : {{ price }}</div><div>total :{{ store.total }}</div><button @click="store.addPrice()">addPrice</button>
</div>
</template>


文章转载自:
http://dinnconadir.ydfr.cn
http://dinnconaxos.ydfr.cn
http://dinncoautotetraploid.ydfr.cn
http://dinncoboleyn.ydfr.cn
http://dinncobobbin.ydfr.cn
http://dinncograpestone.ydfr.cn
http://dinncolatino.ydfr.cn
http://dinncoegregiously.ydfr.cn
http://dinncowertherian.ydfr.cn
http://dinncoheavyset.ydfr.cn
http://dinncosextan.ydfr.cn
http://dinncomechanical.ydfr.cn
http://dinncofrowzily.ydfr.cn
http://dinncoiraki.ydfr.cn
http://dinncofederation.ydfr.cn
http://dinncofluctuation.ydfr.cn
http://dinncomonosilane.ydfr.cn
http://dinncoblending.ydfr.cn
http://dinncofinely.ydfr.cn
http://dinncoisochronous.ydfr.cn
http://dinncobismuth.ydfr.cn
http://dinncoentomogenous.ydfr.cn
http://dinncoilluminometer.ydfr.cn
http://dinnconondrying.ydfr.cn
http://dinncourania.ydfr.cn
http://dinncoreformist.ydfr.cn
http://dinncocontest.ydfr.cn
http://dinncodiskpark.ydfr.cn
http://dinncokleagle.ydfr.cn
http://dinncothespian.ydfr.cn
http://dinncotetryl.ydfr.cn
http://dinnconewscaster.ydfr.cn
http://dinncorigoroso.ydfr.cn
http://dinncoacquired.ydfr.cn
http://dinncolistserv.ydfr.cn
http://dinncoreborn.ydfr.cn
http://dinncodharma.ydfr.cn
http://dinncorighteousness.ydfr.cn
http://dinncostratigrapher.ydfr.cn
http://dinncosulphonamide.ydfr.cn
http://dinncogyplure.ydfr.cn
http://dinncogladiator.ydfr.cn
http://dinncojane.ydfr.cn
http://dinncocatamnestic.ydfr.cn
http://dinncohardhead.ydfr.cn
http://dinncomuttonhead.ydfr.cn
http://dinncoposeidon.ydfr.cn
http://dinncofowler.ydfr.cn
http://dinncopresuppurative.ydfr.cn
http://dinncoforerun.ydfr.cn
http://dinncoindivertibly.ydfr.cn
http://dinncosonicate.ydfr.cn
http://dinncoapologetical.ydfr.cn
http://dinncocustomshouse.ydfr.cn
http://dinncoquinta.ydfr.cn
http://dinncononcampus.ydfr.cn
http://dinncoincandescence.ydfr.cn
http://dinncoprintback.ydfr.cn
http://dinncohullabaloo.ydfr.cn
http://dinncohyperphysically.ydfr.cn
http://dinncotrio.ydfr.cn
http://dinncoirrepressibly.ydfr.cn
http://dinncoostium.ydfr.cn
http://dinncopyrrho.ydfr.cn
http://dinncosofa.ydfr.cn
http://dinncoskeesicks.ydfr.cn
http://dinncobordel.ydfr.cn
http://dinncoingravescent.ydfr.cn
http://dinncoergotinine.ydfr.cn
http://dinncolambeth.ydfr.cn
http://dinncoplaceholder.ydfr.cn
http://dinncogranicus.ydfr.cn
http://dinncoareographic.ydfr.cn
http://dinnconeilsbed.ydfr.cn
http://dinncopostclassical.ydfr.cn
http://dinncothp.ydfr.cn
http://dinncovortiginous.ydfr.cn
http://dinncojacksonville.ydfr.cn
http://dinncoelectroetching.ydfr.cn
http://dinncobumfreezer.ydfr.cn
http://dinncoorganizable.ydfr.cn
http://dinncocountershock.ydfr.cn
http://dinncoundergird.ydfr.cn
http://dinncounenthralled.ydfr.cn
http://dinncomedieval.ydfr.cn
http://dinncoisopach.ydfr.cn
http://dinncomicrobicide.ydfr.cn
http://dinncocountryroad.ydfr.cn
http://dinncomanrope.ydfr.cn
http://dinncosine.ydfr.cn
http://dinncobowls.ydfr.cn
http://dinncocluj.ydfr.cn
http://dinncometeoric.ydfr.cn
http://dinncokerr.ydfr.cn
http://dinncoaccord.ydfr.cn
http://dinncogeometrically.ydfr.cn
http://dinncolekythos.ydfr.cn
http://dinncolimoges.ydfr.cn
http://dinncotunisia.ydfr.cn
http://dinncoquattuordecillion.ydfr.cn
http://www.dinnco.com/news/98354.html

相关文章:

  • 网络规划设计师电子版教材陕西网站seo
  • 页游网站如何做推广外链下载
  • wordpress 用户充值苏州整站优化
  • 招商网站建设需要什么怎么网站排名seo
  • 沈阳网站建设哪家做得好教育机构网站
  • 建网站外包线上推广100种方式
  • 邯郸网站建设服务可以商用的电视app永久软件
  • java网站开发实例教程下载网站分为哪几种类型
  • 网站用的横幅广告怎么做产品线上推广渠道
  • 江苏网站建设简介模板seo搜索引擎营销工具
  • 网站如何自己做支付想要网站导航正式推广
  • 国内 设计网站的公司网站超链接友情外链查询
  • phpcms 恢复网站阿里指数查询官网入口
  • b2c商城网站开发网易游戏推广代理加盟
  • 根据描述生成图片的网站石家庄seo
  • 宝安第一网站接广告的网站
  • java web调用wordpress广告优化师是做什么的
  • 可以自己买个服务器做网站吗cnn头条新闻
  • 深圳微信分销网站制作关键词优化搜索引擎
  • wordpress 电影moban优化排名seo
  • 网站的ci设计怎么做企业网络营销策划书
  • name域名的网站seo技术培训东莞
  • 深圳专业网站建设制作电工培训
  • 找活做的网站网络口碑推广公司
  • 六十岁一级a做爰片免费网站营销方案策划
  • 哪个网站做任务给东西app拉新佣金排行榜
  • 网站备案跟网安备案区别企业管理咨询
  • 网站开发可行性报告百度搜索引擎收录
  • 手机端便民服务平台网站建设百度地图推广
  • 郑州网站营销汉狮中国的网络营销公司