diff --git a/src/views/Creator/CreatorList.vue b/src/views/Creator/CreatorList.vue
index 18c8225..da4ab9a 100644
--- a/src/views/Creator/CreatorList.vue
+++ b/src/views/Creator/CreatorList.vue
@@ -46,6 +46,11 @@
+
+
+ 전체 {{ total_creator_count }} 명
+
+
@@ -159,6 +164,7 @@ export default {
is_loading: false,
page: 1,
total_page: 0,
+ total_creator_count: 0,
search_word: '',
accounts: [],
account: {},
@@ -234,6 +240,7 @@ export default {
const data = res.data.data
const total_page = Math.ceil(data.totalCount / 20)
+ this.total_creator_count = data.totalCount;
this.accounts = data.items
if (total_page <= 0)
@@ -269,6 +276,12 @@ export default {
}
-