79463714

Date: 2025-02-24 13:43:45
Score: 0.5
Natty:
Report link

You can just use a tag like this

<template>
  <div>
    <a :href="url" target="_blank">Open Link</a>
</div>
</template>

<script>
export default {
  data() {
    return {
      url: 'https://example.com'
    };
  }
};
</script>

You can also change the target attribute to use variable or props

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chairuman