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