index.vue 332 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div>
  3. 无更新日志
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. props: {
  10. },
  11. components: {
  12. },
  13. data () {
  14. return {
  15. }
  16. },
  17. methods: {
  18. },
  19. mounted() {
  20. },
  21. watch: {
  22. },
  23. computed: {
  24. },
  25. filters: {
  26. }
  27. }
  28. </script>
  29. <style scoped lang='scss'>
  30. </style>