Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created June 19, 2024 11:54
Show Gist options
  • Save ABooooo/10b2578d9e55d84b86e1418ec3d67fef to your computer and use it in GitHub Desktop.
Save ABooooo/10b2578d9e55d84b86e1418ec3d67fef to your computer and use it in GitHub Desktop.
/* for example get el width */
// template
<p ref="appTitleRef">App title</p>
// script
const appTitleRef = ref(null)
onMounted(() => {
console.log(`The app title is ${ appTitleRef.value.offsetWidth } px wide`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment