12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="home-page">
- <Carousel />
- </div>
- </template>
- <script>
- import Carousel from "./Carousel";
- export default {
- computed: {
- token() {
- let token =
- (window.localStorage.getItem("webtoken") &&
- window.localStorage.getItem("webtoken")) ||
- "";
- return token;
- },
- },
- components: {
- Carousel
- },
- data() {
- return {
-
- };
- },
- watch: {
-
- },
- methods: {
- },
-
- mounted() {
- },
- };
- </script>
- <style lang="less" scoped>
- @import url("./style.less");
- </style>
|