About.vue 470 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <h4 style="color:orange;">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>