vue3 - 自定义hook

自定义hook

简单点来说就是将人物或者订单的所有数据和方法放在一个ts文件里面

这样便于维护 假如一个人只需要管 人物的模块 那他只需要操作usePerson.ts文件就可以了

//useDog.ts

ts 复制代码
import { ref,reactive} from 'vue';
import axios  from 'axios';


export default function(){
    let dogList=reactive([
        'https://images.dog.ceo/breeds/pembroke/n02113023_4373.jpg' 
    ])

    async function getDog(){
        let result=await axios.get('https://dog.ceo/api/breed/pembroke/images/random')
        dogList.push(result.data.message)
    }

    //向外部提交东西
    return {dogList,getDog}
}

useHeight.ts

ts 复制代码
import { ref,reactive} from 'vue';

export default function(){
    let height=ref(0)
    
    function addHeigtht(){
        height.value+=1
    }

    return {height,addHeigtht}
}

person.vue

ts 复制代码
<template>
    <div class="person">
        <h1>当前的高度为{{ height }}</h1>
        <button @click="addHeigtht">点我高度加一 </button>
        <hr>
        <img v-for="(dog,index) in dogList" :src="dog" :key="index">
        <hr>
        <hr>
        <button @click="getDog">点我狗再来</button>
    </div>
</template>

<script lang="ts" setup name="Person">
   import useDog from '@/hooks/useDog'
   import useHeight from '@/hooks/useHeight'

   const {dogList,getDog} =useDog()

   const {height,addHeigtht} =useHeight()

</script>


<style>
    .person{
        background-color: aqua;
        box-shadow: 0 0 10px;
        padding: 20px;
        border-radius: 10px;
    }
    button{
        margin: 0 6px;
    }

    img{
        height: 150px;
    }
</style>
相关推荐
温轻舟18 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
p***c94918 小时前
PHP在电商中的电商系统
开发语言·php
Z***258018 小时前
JavaScript在Node.js中的Deno
开发语言·javascript·node.js
cypking19 小时前
Vue 3 + Vite + Router + Pinia + Element Plus + Monorepo + qiankun 构建企业级中后台前端框架
前端·javascript·vue.js
a***560619 小时前
Windows上安装Go并配置环境变量(图文步骤)
开发语言·windows·golang
San30.19 小时前
ES6+ 新特性解析:让 JavaScript 开发更优雅高效
开发语言·javascript·es6
烤麻辣烫19 小时前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea
友友马20 小时前
『QT』窗口 (一)
开发语言·数据库·qt
APIshop20 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
u***276120 小时前
TypeScript 与后端开发Node.js
javascript·typescript·node.js