微信

index.vue 389B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="mainPage">
  3. 城咖啡
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. data () {
  10. return {
  11. }
  12. },
  13. computed: {
  14. },
  15. components: {
  16. },
  17. created () {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <!-- Add "scoped" attribute to limit CSS to this component only -->
  24. <style lang="scss" scoped>
  25. @import "page.scss";
  26. </style>