diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5711be4..d9a6c5b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
[authState]: https://github.com/okta/okta-auth-js#authstatemanager
+# 5.2.0
+
+### Features
+
+- [#89](https://github.com/okta/okta-vue/pull/89) Supports named slot (`error`) in `LoginCallback` component
+
# 5.1.1
### Fixes
diff --git a/README.md b/README.md
index d823c72..cc5551c 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ app.mount('#app')
### Use the LoginCallback Component
-In order to handle the redirect back from Okta, your app will need to read the values returned from Okta and exchange them for tokens. This SDK provides a [LoginCallback](#logincallback) component which calls [$auth.handleLoginRedirect](https://github.com/okta/okta-auth-js#handleloginredirecttokens) to perform this logic. If an error occurs, it will be displayed by the [LoginCallback](#logincallback) component. For custom behavior, the [LoginCallback component file](https://github.com/okta/okta-vue/blob/master/src/components/LoginCallback.vue) can be copied to your own source tree and modified as needed.
+In order to handle the redirect back from Okta, your app will need to read the values returned from Okta and exchange them for tokens. This SDK provides a [LoginCallback](#logincallback) component which calls [$auth.handleLoginRedirect](https://github.com/okta/okta-auth-js#handleloginredirecttokens) to perform this logic. If an error occurs, it will be displayed by the [LoginCallback](#logincallback) component, [named slot](https://vuejs.org/guide/components/slots.html#named-slots) (`error`) can be provided to customize the error rendering logic. For custom behavior, the [LoginCallback component file](https://github.com/okta/okta-vue/blob/master/src/components/LoginCallback.vue) can be copied to your own source tree and modified as needed.
**Note:** Make sure you have the login redirect URI (as an absolute URL) listed in your Okta App's configuration in the Okta Admin console.
diff --git a/src/components/LoginCallback.vue b/src/components/LoginCallback.vue
index e16fac2..87425dd 100644
--- a/src/components/LoginCallback.vue
+++ b/src/components/LoginCallback.vue
@@ -12,7 +12,7 @@
diff --git a/test/app/src/App.vue b/test/app/src/App.vue
index 443b75c..e19b47d 100644
--- a/test/app/src/App.vue
+++ b/test/app/src/App.vue
@@ -4,7 +4,13 @@
Protected
-
+
+
+
+