Vue Declaration CheatSheet

vuecheatsheet
Mar 18, 2023

Vue CheatSheet

1. Props

Arrays

props: {
    radioItems: {
      type: Array as PropType<Array<RadioItem>>,
      required: true,
    },
  },

2. refs

Arrays

const openState = ref([] as Array<number>)

Related Articles

How to Use Lucide Icons with Vuetify

A guide on integrating Lucide icons into a Vuetify project.