index.vue 292 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <head-bar></head-bar>
  4. <word-type></word-type>
  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. </style>