You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
1.2 KiB
1 lines
1.2 KiB
{"ast":null,"code":"import { ref } from 'vue';\nfunction useHovering() {\n const hovering = ref(false);\n const handleMouseEnter = () => {\n hovering.value = true;\n };\n const handleMouseLeave = () => {\n hovering.value = false;\n };\n return {\n hovering,\n handleMouseEnter,\n handleMouseLeave\n };\n}\nexport { useHovering };","map":{"version":3,"names":["useHovering","hovering","ref","handleMouseEnter","value","handleMouseLeave"],"sources":["../../../../../../../packages/components/input-tag/src/composables/use-hovering.ts"],"sourcesContent":["import { ref } from 'vue'\n\nexport function useHovering() {\n const hovering = ref(false)\n\n const handleMouseEnter = () => {\n hovering.value = true\n }\n\n const handleMouseLeave = () => {\n hovering.value = false\n }\n\n return {\n hovering,\n handleMouseEnter,\n handleMouseLeave,\n }\n}\n"],"mappings":";AACO,SAASA,WAAWA,CAAA,EAAG;EAC5B,MAAMC,QAAQ,GAAGC,GAAG,CAAC,KAAK,CAAC;EAC3B,MAAMC,gBAAgB,GAAGA,CAAA,KAAM;IAC7BF,QAAQ,CAACG,KAAK,GAAG,IAAI;EACzB,CAAG;EACD,MAAMC,gBAAgB,GAAGA,CAAA,KAAM;IAC7BJ,QAAQ,CAACG,KAAK,GAAG,KAAK;EAC1B,CAAG;EACD,OAAO;IACLH,QAAQ;IACRE,gBAAgB;IAChBE;EACJ,CAAG;AACH","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|