Newer
Older
CloudBrainNew / src / components / NoData.vue
StephanieGitHub on 4 Feb 2021 422 bytes first commit
<!--
  * params:[title,rightText,rightIcon,rightClick]
 -->
<template>
  <div class="no-data">
    <img :src="require('@/assets/images/no-data.png')" alt="">
    <br>{{text}}
  </div>
</template>

<script>
export default {
  props: {
    text: String
  },
  methods: {

  }
}
</script>

<style scoped>
.no-data{ text-align: center; font-size: 16px; margin-top: 40px; color: #7A7A7A;}
.no-data img{ width: 160px;}
</style>