@@ -0,0 +1,15 @@
+<template>
+ <i-frame :src="url" />
+</template>
+<script>
+import iFrame from "../../components/iFrame/index";
+export default {
+ name: "windy",
+ components: { iFrame },
+ data() {
+ return {
+ url: "D:/code/cpp/cpp-ui/src/views/windy/windy.html"
+ };
+ },
+};
+</script>