index.vue 322 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div>
  3. <head-bar></head-bar>
  4. <LTProgress></LTProgress>
  5. <foot-bar></foot-bar>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: "index",
  11. head(){
  12. return{
  13. title:"中关村公共资源论坛|加入我们"
  14. }
  15. },
  16. }
  17. </script>
  18. <style scoped>
  19. html,body{
  20. padding: 0;
  21. margin: 0;
  22. }
  23. </style>