您的位置:首页 > 汽车 > 时评 > 前端:Vue3学习-2

前端:Vue3学习-2

2024/12/22 9:04:18 来源:https://blog.csdn.net/qq_45404396/article/details/141615672  浏览:    关键词:前端:Vue3学习-2

前端:Vue3学习-2

    • 1. vue3 新特性-defineOptions
    • 2. vue3 新特性-defineModel
    • 3. vue3 Pinia-状态管理工具
    • 4. Pinia 持久化插件 -> pinia-plugin-persistedstate

1. vue3 新特性-defineOptions

如果要定义组件的name或其他自定义的属性,还是得回归原始得方法----再添加一个普通得script标签,这样就会存在两个script标签。

<script>
export default{name:'组件名'
}
</script>
<script setup>
</script>
<template>
</template>

因此在vue3.3中新引入了defineOptions宏,这样上述就可以这样写了。

<script setup>
defineOptions({name:'组件名'
})
</script>

2. vue3 新特性-defineModel

在vue3中,自定义组件上使用v-model,相当于传递一个modelValue属性,同时触发update:modelValue事件。即

<Child v-model="isVisible">
// 相当于
<Child :modelValue="isVisible" @update:modelValue="isVisble=$event">

还需要在子组件中定义props和emits,如下

父组件

<script setup>
import sonCom from '@/components/son-com.vue'
import { ref } from 'vue';const _str = ref('');</script>
<template><div><sonCom v-model="_str"></sonCom><p>{{ _str }}</p></div>
</template>

子组件

<script setup>
const props = defineProps({modelValue:String   
})const emits = defineEmits(['update:modelValue'])
const inp = (event)=>{emits('update:modelValue',event.target.value)
}
</script><template><div><input type="text" :value="modelValue" @input="inp"></div>
</template>

运行结果:
请添加图片描述
现在使用defineModel,子组件代码可以修改如下:

<script setup>
import { defineModel } from 'vue'
const modelValue = defineModel()
const inp = (event)=>{modelValue.value = event.target.value
}
</script><template><div><input type="text" :value="modelValue" @input="inp"></div>
</template>

需要注意的是,如果modelValue在结构代码中使用时,不需要“.value”,直接如下:


<input type="text" :value="modelValue" @input="e=>modelValue=e.target.value">

需要在vite.config.js进行配置,上述才能生效,如下:

import { fileURLToPath, URL } from 'node:url'import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'// https://vitejs.dev/config/
export default defineConfig({plugins: [vue({script:{defineModel:true}}),],resolve: {alias: {'@': fileURLToPath(new URL('./src', import.meta.url))}}
})

3. vue3 Pinia-状态管理工具

Pinia时vue的最新状态管理工具,是vuex的替代品。
优势如下:

  1. 提供了更加简明的api,去掉了mutation;
  2. 提供符合组合式风格的api
  3. 去掉了modules的概念,每一个store都是一个独立的模块;

pinia的安装命令为:

npm install pinia

使用,首先需要在main.js文件中导入pinia,然后创建pinia实例,进行pinia注册。

import { createApp } from 'vue'
import App from './App.vue'import { createPinia } from 'pinia'
// 导包
const pinia = createPinia()
// 创建pinia实例createApp(App).use(pinia).mount('#app')

新建store js文件,用于初始化和操作数据。

import { defineStore } from "pinia"
import { ref } from "vue"
// counter作为store的唯一标识
export const useStore = defineStore('counter',()=>{const count = ref(0)// 数据state countconst increment = ()=>{count.value ++}return{count, increment}
})

使用上述数据,直接在对应组件中导入,然后使用即可,如下:

<script setup>
import { useStore } from '@/store/counter'const counter = useStore()
</script><template><div><p>子组件</p><p>{{ counter.count }}</p><button @click="counter.increment">+1</button></div>
</template>

使用storeToRefs对store进行解构
由于store 是一个用reactive 包裹的对象,reactive包裹的对象只有当为对象时,才是响应式的,因此如果直接进行解构数据,那么所结构出的数据不具有响应式,此时解构数据,需要用到storeToRefs,方法直接解构即可。

<script setup>
import { useStore } from '@/store/counter'
import {storeToRefs} from 'pinia'
const counter = useStore()
const { count } = storeToRefs(counter)
const { increment } = counter
</script><template><div><p>子组件</p><p>{{ count }}</p><button @click="increment">+1</button></div>
</template>

4. Pinia 持久化插件 -> pinia-plugin-persistedstate

安装命令

npm install pinia-plugin-persistedstate

yarn add pinia-plugin-persistedstate

在mian.js文件添加插件配置

import { createApp } from 'vue'
import App from './App.vue'import { createPinia } from 'pinia'
// 导包
import persist from 'pinia-plugin-persistedstate'const pinia = createPinia()
// 创建pinia实例
pinia.use(persist)
createApp(App).use(pinia).mount('#app')

在需要持久化的模块添加如下配置即可

import { defineStore } from "pinia"
import { ref } from "vue"
// counter作为store的唯一标识
export const useStore = defineStore('counter',()=>{const count = ref(0)// 数据state countconst increment = ()=>{count.value ++}return{count, increment}}, {persist: true// 开启当前模块的持久化}
)

运行结果:

请添加图片描述
只是在本地浏览器进行存储,具体存储在localstorage里边。
在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com