AdminPost.vue 309 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <el-row>
  3. </el-row>
  4. </template>
  5. <script>
  6. export default {
  7. name: 'AdminPost',
  8. components: {},
  9. data() {
  10. return {
  11. }
  12. },
  13. created() {
  14. document.title = "稿件管理"
  15. },
  16. watch: {
  17. $route(){
  18. this.$router.go()
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>