UNPKG

534 BPlain TextView Raw
1<template>
2 <div class='<%=lowerPageName%>' id='<%=lowerPageName%>'>
3 欢迎访问, bind页
4 </div>
5</template>
6<script>
7// import API from '@/api'
8// import Utils from '@/utils'
9export default {
10 name: 'bind',
11 components: {},
12 data () {
13 return {}
14 },
15 methods: {
16 demo () {}
17 }
18 // async mounted() {
19 // API访问
20 // let response = await API.bind.getInfo({});
21 // let result = response.data;
22 // this.$nextTick(() => { })
23 // }
24}
25</script>
26<style lang="less">
27.<%=lowerPageName %> {
28 color: red;
29}
30</style>
\No newline at end of file