longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <flex-layout>
        <ip-input></ip-input>
    </flex-layout>
</template>
 
<script>
import IpInput from "@/components/ipInput";
export default {
    name: "ipInputPage",
    components: {IpInput},
    data() {
 
    },
}
</script>
 
<style scoped>
 
</style>