40 lines
950 B
Vue
40 lines
950 B
Vue
<!--
|
|
* @Author: your name
|
|
* @Date: 2020-08-28 15:20:15
|
|
* @LastEditTime: 2020-10-10 17:19:06
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /xfhd-vue-scaffold/src/page/index/Home/Index.vue
|
|
-->
|
|
<template>
|
|
<div class="color">
|
|
<AR></AR>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
// @ is an alias to /src
|
|
import AR from "@/components/ar/index.vue";
|
|
|
|
export default {
|
|
name: "ar",
|
|
components: { AR },
|
|
mounted() {},
|
|
methods: {
|
|
showTips() {
|
|
this.$weui.topTips("正在努力开发中……敬请期待", {
|
|
duration: 1500,
|
|
className: "custom-classname",
|
|
callback: function () {
|
|
// console.log('close');
|
|
},
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped lang="less">
|
|
.color {
|
|
min-height: 100vh;
|
|
}
|
|
</style> |