_sign.vue 267 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="w-full">
  3. {{sign}}
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return {
  10. sign:''
  11. }
  12. },
  13. mounted(){
  14. let b = this.$route.params.sign
  15. console.log(b);
  16. this.sign = b;
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>