| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div>
- <!-- eslint-disable-next-line -->
- <div v-html="testData" />
- </div>
- </template>
- <script>
- export default {
- components: {
-
- },
- data: function () {
- return {
- arr1: [],
- testData: '',
- };
- },
- mounted: function () {
-
- },
- methods: {
-
- },
- };
- </script>
- <style>
- </style>
|