| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="navigation">
- <p>经销商社交媒体数据平台{{navTitle1}}{{navTitle2}}</p>
- </div>
- </template>
- <script>
- export default {
- props: {
- navTitle1: {
- type: String,
- default: ''
- },
- navTitle2: {
- type: String,
- default: ''
- }
- },
- mounted() {
-
- }
- };
- </script>
- <style scoped lang="less">
- .navigation {
- width: 1190px;
- height: 20px;
- margin: 4px auto;
- p {
- font-size: 12px;
- }
- }
- </style>
|