[hub][vue] add empty state and dynamic publish button

This commit is contained in:
Prateeksha Singh
2018-08-23 21:25:53 +05:30
parent d7d2bb261b
commit b696b2965d
6 changed files with 116 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="subpage-message">
<p class="text-muted flex">
<span v-html="message"></span>
<i class="octicon octicon-x text-extra-muted"></i>
</p>
</div>
</template>
<script>
export default {
name: ' notification-message',
props: {
message: String,
}
}
</script>
<style scoped></style>