Navigation.vue 503 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="navigation">
  3. <p>经销商社交媒体数据平台{{navTitle1}}{{navTitle2}}</p>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. navTitle1: {
  10. type: String,
  11. default: ''
  12. },
  13. navTitle2: {
  14. type: String,
  15. default: ''
  16. }
  17. },
  18. mounted() {
  19. }
  20. };
  21. </script>
  22. <style scoped lang="less">
  23. .navigation {
  24. width: 1190px;
  25. height: 20px;
  26. margin: 4px auto;
  27. p {
  28. font-size: 12px;
  29. }
  30. }
  31. </style>