zoukankan      html  css  js  c++  java
  • vue3 CompositionAPI 函数以及变量抽离成单独的文件

    新建hooks.ts

    import { ref, onMounted } from 'vue'

    export default function useRooks() {
      const list = ref<any>([])
      const showShare = ref<boolean>(false)
      const onShow = () => {
        showShare.value = true
      }

      const onHandle = () => {
        getdata()
      }

      let time = 1
      let data = [{}]
      const getdata = () => {
        time = time + 1
        console.log(time)
        new Promise((resolve, reject) => {
          data = [...data, {}]
          list.value = data
          resolve(true)
        })
      }

      onMounted(() => {
        getdata()
      })

      return {
        getdata,
        list,
        onShow,
        showShare,
        onHandle,
      }
    }

    <template>
      <div>
        <button @click="onShow">分享</button>
        <button @click="onHandle">测试hooks</button>
      </div>
    </template>

    <script lang="ts">
    import { defineComponent } from 'vue'
    import useRooks from './hooks/index'
    export default defineComponent({
      components: { share, Rotate },
      setup() {
        const { list, getdata, showShare, onShow, onHandle } = useRooks()
        return {
          showShare,
          onShow,
          list,
          getdata,
          onHandle,
        }
      },
    })
    </script>

    <style lang="scss" scoped></style>
  • 相关阅读:
    剑指Offer——对成的二叉树
    剑指Offer——二叉树的下一个节点
    路径总和I、II、III
    性能调优工具
    关于在程序中内存检测的一些知识
    ptmalloc、tcmalloc及 jemalloc总结
    [LeetCode] 43. 字符串相乘
    [LeetCode] 155. Min Stack
    [LeetCode] 380. Insert Delete GetRandom O(1)
    linux内存过高排查
  • 原文地址:https://www.cnblogs.com/boonook/p/15102264.html
Copyright © 2011-2022 走看看