123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div ref="common-title" class="common-tips">
- <div class="common-tips-box" v-html="data.options.title" />
- </div>
- </template>
- <script>
- export default {
- components: {},
- props: {
- data: null,
- editMode: () => {
- return false
- }
- },
- data() {
- return {}
- },
- watch: {
- data: {
- deep: true,
- handler: function handler() {
- // this.getSize();
- }
- }
- },
- mounted() {},
- methods: {}
- }
- </script>
- <style scoped >
- .common-tips {
- }
- .common-tips-box {
- font-size: 16px;
- padding: 8px;
- line-height: 1.6;
- background: #eaf7ff;
- margin: 14px;
- }
- </style>
|