当前位置:   article > 正文

Vue3+setup+ts使用技巧_script lang="ts" setup 获取class

script lang="ts" setup 获取class

1、组件引入

当使用setup的时候,组件直接引入就可以了,不需要再自己注册

  1. <template>
  2. <Child />
  3. </template>
  4. <script setup lang="ts">
  5. import Child from "./Child.vue";
  6. </script>

2、ref和reactive

ref一般用于基本的数据类型,比如string、booleanreactive一般用于对象ref的地方其实也是调用reactive实现的。

  1. <template>
  2. <h1>{{ title }}</h1>
  3. <div>
  4. {{ data }}
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import { ref, reactive } from "vue";
  9. const title = ref("title");
  10. const data = reactive({
  11. userName: "xiaoming",
  12. age: 18,
  13. });
  14. </script>

3、defineEmits和defineProps获取父组件传过来值和事件

  1. // 第一种不带默认值props
  2. const props = defineProps<{
  3. foo: string
  4. bar?: number
  5. }>()
  6. // 第二种带默认值props
  7. export interface ChildProps {
  8. foo: string
  9. bar?: number
  10. }
  11. const props = withDefaults(defineProps<ChildProps>(), {
  12. foo: "1qsd"
  13. bar?: 3
  14. })
  15. // 第一种获取事件
  16. const emit = defineEmits<{
  17. (e: 'change', id: number): void
  18. (e: 'update', value: string): void
  19. }>()
  20. // 第二种获取事件
  21. const emit = defineEmits(["dosth"])

4. 使用 useAttrs 和 useSlots

useAttrs 可以获取父组件传过来的 id 、class 等值。 useSlots 可以获得插槽的内容。 例子中,我们使用 useAttrs 获取父组件传过来的 id 、classuseSlots 获取插槽的内容。

  1. //父组件
  2. <template>
  3. <div class="father">{{ fatherRef }}</div>
  4. <Child :fatherRef="fatherRef" @changeVal="changeVal" class="btn" id="111">
  5. <template #test1>
  6. <div>1223</div>
  7. </template>
  8. </Child>
  9. </template>
  10. <script setup lang="ts">
  11. import { ref } from "vue";
  12. import Child from "./Child.vue";
  13. const fatherRef = ref("1");
  14. function changeVal(val: string) {
  15. fatherRef.value = val;
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .father {
  20. margin-top: 40px;
  21. margin-bottom: 40px;
  22. }
  23. .btn {
  24. font-size: 20px;
  25. color: red;
  26. }
  27. </style>
  1. //子组件
  2. <template>
  3. <!-- <div class="child">{{ props.fatherRef }}</div> -->
  4. <div v-bind="attrs">
  5. <slot name="test1">11</slot>
  6. <input type="text" v-model="inputVal" />
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. import { computed, useAttrs, useSlots } from "vue";
  11. const props = defineProps<{
  12. fatherRef: string;
  13. }>();
  14. const emits = defineEmits(["changeVal"]);
  15. const slots = useSlots();
  16. const attrs = useAttrs();
  17. console.log(122, attrs, slots);
  18. const inputVal = computed({
  19. get() {
  20. return props.fatherRef;
  21. },
  22. set(val: string) {
  23. emits("changeVal", val);
  24. },
  25. });
  26. </script>

5、vue3 ts 获取组件 ref 实例

  • 通过ref直接拿到dom引用

  1. <template>
  2. <div class="demo1-container">
  3. <div ref="sectionRef" class="ref-section"></div>
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import {ref} from 'vue'
  8. const sectionRef = ref()
  9. </script>

通过对div元素添加了ref属性,为了获取到这个元素,我们声明了一个与ref属性名称相同的变量sectionRef,然后我们通过 sectionRef.value 的形式即可获取该div元素 

  • 通过父容器的ref遍历拿到dom引用

  1. <template>
  2. <div class="demo2-container">
  3. <div ref="listRef" class="list-section">
  4. <div @click="higherAction(index)" class="list-item" v-for="(item, index) in state.list" :key="index">
  5. <span>{{item}}</span>
  6. </div>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. import { ref, reactive } from 'vue'
  12. const listRef = ref()
  13. </script>

 通过对父元素添加了ref属性,并声明了一个与ref属性名称相同的变量listRef,此时通过listRef.value会获得包含子元素的dom对象 此时可以通过listRef.value.children[index]的形式获取子元素dom

  • 通过:ref将dom引用放到数组中

  1. <template>
  2. <div class="demo2-container">
  3. <div class="list-section">
  4. <div :ref="setRefAction" @click="higherAction(index)" class="list-item" v-for="(item, index) in state.list" :key="index">
  5. <span>{{item}}</span>
  6. </div>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. import { reactive } from 'vue'
  12. const state = reactive({
  13. list: [1, 2, 3, 4, 5, 6, 7],
  14. refList: [] as Array<any>
  15. })
  16. const setRefAction = (el: any) => {
  17. state.refList.push(el);
  18. }
  19. </script>

 通过:ref循环调用setRefAction方法,该方法会默认接收一个el参数,这个参数就是我们需要获取的div元素 此时可以通过state.refList[index]的形式获取子元素dom

  • 通过子组件emit传递ref

  1. <template>
  2. <div ref="cellRef" @click="cellAction" class="cell-item">
  3. <span>{{item}}</span>
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import {ref} from 'vue';
  8. const props = defineProps({
  9. item: Number
  10. })
  11. const emit = defineEmits(['cellTap']);
  12. const cellRef = ref();
  13. const cellAction = () => {
  14. emit('cellTap', cellRef.value);
  15. }
  16. </script>

 通过对子组件添加了ref属性,并声明了一个与ref属性名称相同的变量cellRef,此时可以通过emit将cellRef.value作为一个dom引用传递出去.

  • tsx 等 render 组件中获取的方式更简单

  1. import { defineComponent, ref, onMounted } from "@vue/runtime-core";
  2. import { ElForm } from "element-plus";
  3. export default defineComponent({
  4. setup() {
  5. const $form = ref<InstanceType<typeof ElForm>>(null);
  6. onMounted(() => {
  7. $form.value?.validate; // 类型正确
  8. });
  9. return () => <ElForm ref={$form}></ElForm>;
  10. },
  11. });

需要注意的是,如果使用 expose 暴露方法出去,无法获取到对应的类型,您需要自定义类型 

  1. <!-- Home.vue -->
  2. <template>
  3. <MyForm :ref="$form" />
  4. </template>
  5. <script>
  6. import { defineComponent, ref, onMounted } from '@vue/runtime-core'
  7. import MyForm, { MyFormExpose } from '@/components/MyForm'
  8. export default defineComponent({
  9. components: { MyForm }
  10. setup(){
  11. const $form = ref<InstanceType<typeof MyForm> & MyFormExpose>(null)
  12. onMounted(() => {
  13. $form.value?.validate // 类型正确
  14. })
  15. }
  16. })
  17. </script>
  1. // 组件 MyForm
  2. import { defineComponent, ref, onMounted } from "@vue/runtime-core";
  3. import { ElForm } from "element-plus";
  4. type ELEForm = InstanceType<typeof ElForm>;
  5. // 在外界通过 ref 获取组件实例 请使用这个类型
  6. export interface MyFormExpose {
  7. validate: ELEForm["validate"];
  8. }
  9. export default defineComponent({
  10. name: "MyForm",
  11. setup(props, { expose }) {
  12. const $form = ref<InstanceType<typeof ElForm>>(null);
  13. expose({
  14. validate: (callback) => $form.value?.validate(callback),
  15. } as MyFormExpose);
  16. return () => <ElForm ref={$form}></ElForm>;
  17. },
  18. });

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/494361
推荐阅读
相关标签
  

闽ICP备14008679号