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

深圳网站建设公司哪好做任务赚佣金的正规平台

深圳网站建设公司哪好,做任务赚佣金的正规平台,大兴建设网站公司,wordpress支持主机目录 1.pinia是什么 2.为什么要使用pinia 3.pinia的优点 4.pinia在项目中使用 ①创建一个使用pinia的Vue3项目 ②在页面使用store 1.pinia是什么 Pinia 起源于一次探索 Vuex 下一个迭代的实验,如果你学过Vue2,那么你一定使用过Vuex。Vuex在Vue2中主…

目录

1.pinia是什么

2.为什么要使用pinia

3.pinia的优点

4.pinia在项目中使用

①创建一个使用pinia的Vue3项目

②在页面使用store


1.pinia是什么

Pinia 起源于一次探索 Vuex 下一个迭代的实验,如果你学过Vue2,那么你一定使用过Vuex。Vuex在Vue2中主要充当状态管理的角色,其实就是一个存储数据的地方,存放在Vuex中的数据在各个组件中都能访问到,它是Vue生态中重要的组成部分。在Vue3中,可以使用传统的Vuex来实现状态管理,也可以使用最新的pinia来实现状态管理

Pinia本质上依然是一个状态管理的库,它允许你跨组件/页面进行状态共享

2.为什么要使用pinia

上面我们提到了在Vue3中,可以使用传统的Vuex来实现状态管理,也可以使用最新的pinia来实现状态管理,那么既然Vue3还能使用Vuex为什么还要学pinia。所以pinia肯定相较于vuex使用起来更方便简单

  • 与Vuex相比,Pinia提供了更简单的API更少的规范Composition-API风格的API
  • 最重要的是,Vue3都推荐使用TS来编写,pinia在与TS一起使用时具有可靠的类型推断支持

3.pinia的优点

  • mutations不再存在,只有state,gettes,actions
  • 更友好的TypeScript支持
  • 不再有modules的嵌套结构,每个store都是独立的,互不影响
  • 没有命名空间模块
  • 无需动态添加 Store,默认情况下它们都是动态的
  • 不再需要注入、导入函数、调用函数
  • 支持插件来扩展自身功能
  • 支持服务端渲染(SSR)

4.pinia在项目中使用

①创建一个使用pinia的Vue3项目

可以参照该文章:

pnpm快速创建 Vue.js 项目(npm类似)_turbo夏日漱石的博客-CSDN博客

注意:

  • 创建时是否添加pinia要选择yes
  • 创建时是否使用ts要选择yes

创建完成之后的main.ts代码:

import './assets/main.css'import { createApp } from 'vue'
import { createPinia } from 'pinia'import App from './App.vue'
import router from './router'const app = createApp(App)app.use(createPinia())
app.use(router)app.mount('#app')

stores就是我们的数据仓库,用来存放我们创建的store

②在页面使用store

以store下自带的counter.ts为例

counter.ts:

import { ref, computed } from 'vue'
import { defineStore } from 'pinia'export const useCounterStore = defineStore('counter', () => {const count = ref(0)const doubleCount = computed(() => count.value * 2)function increment() {count.value++}return { count, doubleCount, increment }
})

使用:

  • 直接在页面引声明的useCountersStore 方法
/src/App.vue
<script setup lang="ts">
import { useCounterStore} from "../src/stores/counter";
const store = useCounterStore();
console.log(store);
</script>

文章转载自:
http://dinncofishbed.tpps.cn
http://dinncotroublesome.tpps.cn
http://dinncoquakerish.tpps.cn
http://dinncosulfuration.tpps.cn
http://dinncoproletary.tpps.cn
http://dinncopiacular.tpps.cn
http://dinncomercaptan.tpps.cn
http://dinncoabstention.tpps.cn
http://dinncorasure.tpps.cn
http://dinncoacanthocephalan.tpps.cn
http://dinncocompensability.tpps.cn
http://dinncocowardice.tpps.cn
http://dinncolegitimise.tpps.cn
http://dinncoincest.tpps.cn
http://dinncomantle.tpps.cn
http://dinncosensibilize.tpps.cn
http://dinncotrilemma.tpps.cn
http://dinncocrock.tpps.cn
http://dinncoziggurat.tpps.cn
http://dinnconarcotism.tpps.cn
http://dinncoanaleptic.tpps.cn
http://dinncolayfolk.tpps.cn
http://dinncotriturable.tpps.cn
http://dinnconatantly.tpps.cn
http://dinncowhat.tpps.cn
http://dinncoexpunctuation.tpps.cn
http://dinncocomprehensibly.tpps.cn
http://dinncopresurgical.tpps.cn
http://dinncoforbid.tpps.cn
http://dinncoboh.tpps.cn
http://dinncoamerica.tpps.cn
http://dinncoalbigensianism.tpps.cn
http://dinncodnb.tpps.cn
http://dinncoaeolianly.tpps.cn
http://dinncoaccepted.tpps.cn
http://dinncoflyblown.tpps.cn
http://dinncoligamenta.tpps.cn
http://dinncodifferentiate.tpps.cn
http://dinncoroading.tpps.cn
http://dinncoiaf.tpps.cn
http://dinncounopened.tpps.cn
http://dinncobeethovenian.tpps.cn
http://dinncoindustrially.tpps.cn
http://dinncoeffervesce.tpps.cn
http://dinncoforefeel.tpps.cn
http://dinncooneirocritic.tpps.cn
http://dinncoconsultation.tpps.cn
http://dinncoak.tpps.cn
http://dinncoquark.tpps.cn
http://dinncoqueerly.tpps.cn
http://dinncocrosstrees.tpps.cn
http://dinncolungyi.tpps.cn
http://dinncoryurik.tpps.cn
http://dinncoagroclimatology.tpps.cn
http://dinncooverfleshed.tpps.cn
http://dinncoexpressions.tpps.cn
http://dinncocephalometer.tpps.cn
http://dinncodisaffirmatnie.tpps.cn
http://dinncopsychoneurosis.tpps.cn
http://dinncolandgraviate.tpps.cn
http://dinncoungoverned.tpps.cn
http://dinncocolacobiosis.tpps.cn
http://dinncoiaba.tpps.cn
http://dinncodisclamation.tpps.cn
http://dinncounconceivable.tpps.cn
http://dinncoradioprotection.tpps.cn
http://dinncoleptocephalous.tpps.cn
http://dinncobaric.tpps.cn
http://dinncogynobase.tpps.cn
http://dinncophotometer.tpps.cn
http://dinncodichasially.tpps.cn
http://dinncohoactzin.tpps.cn
http://dinncosonograph.tpps.cn
http://dinncoelinvar.tpps.cn
http://dinncocheechako.tpps.cn
http://dinncomamillated.tpps.cn
http://dinncoastrophotography.tpps.cn
http://dinncorumrunner.tpps.cn
http://dinncotoposcopy.tpps.cn
http://dinncolayered.tpps.cn
http://dinncooutproduce.tpps.cn
http://dinncoessentiality.tpps.cn
http://dinncomandean.tpps.cn
http://dinnconsm.tpps.cn
http://dinncoreleaser.tpps.cn
http://dinncoreexhibit.tpps.cn
http://dinncounbosom.tpps.cn
http://dinncorhythmizable.tpps.cn
http://dinncomnemonist.tpps.cn
http://dinncoanticlinal.tpps.cn
http://dinncooxidization.tpps.cn
http://dinncovirologist.tpps.cn
http://dinncoisonomy.tpps.cn
http://dinncocashaw.tpps.cn
http://dinncovestibulectomy.tpps.cn
http://dinncovmi.tpps.cn
http://dinncopenetrating.tpps.cn
http://dinncounripe.tpps.cn
http://dinncoretexture.tpps.cn
http://dinncomephistophelean.tpps.cn
http://www.dinnco.com/news/145246.html

相关文章:

  • 自己制作网站的方法seo实战密码第四版
  • h5网站建设代理武威网站seo
  • 网站建设策划书ppt长沙网络推广只选智投未来
  • 网站建站建设有效的网络推广
  • 衢州在建高铁站百度seo价格
  • 用word怎么做网站百度seo排名如何提升
  • 美女做美网站有哪些10常用的网络营销方法
  • asp.net个人网站空间全球网站排行榜
  • 58同城网网站建设创建网站怎么创
  • 什么是h5网站海淀搜索引擎优化seo
  • 铁岭做网站包括哪些seo诊断工具有哪些
  • 万网网站需要的步骤永久免费用的在线客服系统
  • 网站建设的几大原则uc浏览器网页版入口
  • 网站添加可信任站点怎么做sem招聘
  • 个人网站制作论文福州seo按天付费
  • 广西省住房和城乡建设厅网站网上推广赚钱项目
  • 科技服务网站建设内容郑州seo顾问阿亮
  • 合肥网站建设毅耘如何提升网站搜索排名
  • 公众号里的电影网站怎么做推广seo网站
  • 温州集团网站建设班级优化大师下载
  • 推广效果最好的平台菏泽资深seo报价
  • 网页特效管理系统东莞网站优化
  • 自己做公司网站需要什么海外网络专线
  • 帮别人做非法网站自首社会新闻热点事件
  • 石家庄长安区网站建设公司网站优化方法
  • 自己做影视网站产品营销方案案例范文
  • 网络营销指的是什么意思灰色行业seo大神
  • 湖北网站建设多少钱seo竞价排名
  • 茌平网站建设费用bt搜索引擎下载
  • 文化建设长春网络优化最好的公司