1234567891011121314151617181920212223242526 |
- <template>
- <div>
- <iframe-com :loading="loading" ref="iframeCom" :src="src"/>
- </div>
- </template>
- <script>
- import iframeCom from '/@/views/adweb/wpInTo/iframeCom.vue'
- import { useIframe } from '/src/hooks/component/useIframe'
- export default {
- components:{iframeCom},
- mixins: [useIframe],
- data(){
- return{
- url:'edit.php',
- loginUrl:'edit.php',
- iframePage:'article'
- }
- },
- }
- </script>
- <style scoped>
- </style>
|