| 12345678910111213141516171819202122232425262728 |
- <template>
- <el-row>
- </el-row>
- </template>
- <script>
- export default {
- name: 'AdminPost',
- components: {},
- data() {
- return {
- }
- },
- created() {
- document.title = "稿件管理"
- },
- watch: {
- $route(){
- this.$router.go()
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|