message.vue 304 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. 消息
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Message',
  9. data() {
  10. return {
  11. uninitialized: true,
  12. };
  13. },
  14. methods: {
  15. init(forcedUpdating = true) {
  16. this.uninitialized = false;
  17. console.log("加载消息")
  18. },
  19. },
  20. }
  21. </script>
  22. <style lang="scss"></style>