src/views/dashboard/Analysis.vue
@@ -1,25 +1,28 @@
<template>
  <div>
  <div class="container">
  </div>
</template>
<script>
  export default {
    name: "Analysis",
    components: {
    },
    name: 'Analysis',
    components: {},
    data() {
      return {
      }
      return {}
    },
    created() {
    },
    methods: {
    }
    methods: {}
  }
</script>
</script>
<style scoped lang="less">
  .container {
    flex: 1;
    background-image: url("../../assets/dashboard.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
</style>