making Vue component have two spaces for tab

This commit is contained in:
Brian 2022-08-24 11:21:14 -06:00
parent baf5d5c8c7
commit a662c6b38e
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -21,24 +21,25 @@ const props = defineProps({})
// lifecycle hooks // lifecycle hooks
onBeforeMount(() => { onBeforeMount(() => {
// //
}) })
onMounted(() => { onMounted(() => {
// //
}) })
onBeforeUpdate(() => { onBeforeUpdate(() => {
// //
}) })
onBeforeUnmount(() => { onBeforeUnmount(() => {
// //
}) })
onUnmounted(() => { onUnmounted(() => {
// //
}) })
// methods // methods
</script> </script>