If using the [`Amplify UI for Vue`][1], then this is as easy as binding `:hide-sign-up="true"` in the authenticator:
```javascript
<template>
<authenticator :hide-sign-up="true">
<template v-slot="{ user, signOut }">
<h1>Hello {{ user.username }}!</h1>
<button @click="signOut">Sign Out</button>
</template>
</authenticator>
</template>
```
[1]: https://ui.docs.amplify.aws/vue/connected-components/authenticator/configuration#hide-sign-up
If using the [`Amplify UI for Vue`][1], then this is as easy as binding `:hide-sign-up="true"` in the authenticator:
```JS
<template>
<authenticator :hide-sign-up="true">
<template v-slot="{ user, signOut }">
<h1>Hello {{ user.username }}!</h1>
<button @click="signOut">Sign Out</button>
</template>
</authenticator>
</template>
```
[1]: https://ui.docs.amplify.aws/vue/connected-components/authenticator/configuration#hide-sign-up