You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
523 B
29 lines
523 B
5 years ago
|
{{.Header}}
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<template>
|
||
|
{{.Nav}}
|
||
|
<iframe class="mainIframe" v-bind:src="iframeUrl" frameborder="0"></iframe>
|
||
|
</template>
|
||
|
</div>
|
||
|
</body>
|
||
|
<script>
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
delimiters:["<{","}>"],
|
||
|
data: {
|
||
|
iframeUrl:"/setting",
|
||
|
mailTotal:0,
|
||
|
},
|
||
|
methods: {
|
||
|
openIframeUrl(url){
|
||
|
this.iframeUrl=url;
|
||
|
}
|
||
|
},
|
||
|
created: function () {
|
||
|
}
|
||
|
})
|
||
|
|
||
|
</script>
|
||
|
</html>
|