index.vue 522 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div>
  3. <el-button @click='push'>工作台</el-button>
  4. <el-button @click='drawer = true'>open</el-button>
  5. <el-drawer v-model="drawer" title="I am the title" :with-header="false">
  6. <span>Hi there!</span>
  7. </el-drawer>
  8. </div>
  9. </template>
  10. <route>
  11. {
  12. name: '工作台'
  13. }
  14. </route>
  15. <script>
  16. export default {
  17. name: 'index',
  18. data () {
  19. return {
  20. drawer: false
  21. }
  22. },
  23. methods: {
  24. push () {
  25. this.$router.push('/')
  26. }
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. </style>