About.vue 497 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div>
  3. <h4>about vue component!!!</h4>
  4. <!-- <h4>{{number}}</h4>-->
  5. <!--
  6. <p>Louis_Wiki ---- we are a team to provide the service to gift customization</p>
  7. -->
  8. <p>contact:19970419890</p>
  9. </div>
  10. </template>
  11. <script type="module">
  12. export default {
  13. methods:{
  14. add_number(){
  15. }
  16. },
  17. setup(){
  18. console.log("about vue component setup");
  19. },
  20. mounted(el){
  21. console.log("about vue under mounted ---");
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. div h4{
  27. color:orange;
  28. }
  29. </style>