| 1234567891011121314151617181920212223242526 |
- <template>
- <div class="test">
- {{ test }}
- </div>
- </template>
- <script>
- import axios from '@/utils/axios'
- export default {
- data() {
- return {
- test: '55555555555'
- }
- },
- async mounted() {
- const txt = await axios.get('https://www.baidu.com')
- console.log(666, txt)
- }
- }
- </script>
- <style lang="less" scoped>
- .test {
- background: red;
- border: solid 1px black;
- }
- </style>
|