toBuy.vue 225 B

1234567891011121314151617181920
  1. <template>
  2. <div class="to_buy">
  3. <p>1月</p>
  4. <p><span>¥</span>399</p>
  5. <del>666</del>
  6. </div>
  7. </template>
  8. <script>
  9. export default{
  10. data(){
  11. return {
  12. msg:''
  13. }
  14. }
  15. }
  16. </script>
  17. <style>
  18. </style>