Что значит здесь знак "@"?
Что то не совсем работает, как правильно? <template> <swiper :options="swiperOption"> <swiper-slide> <div class="slide-text" v-bind:style="backgroundImg()"> </div> </swiper-slide> </swiper> </template> <script> import { swiper, swiperSlide } from 'vue-awesome-swiper' require('swiper/dist/css/swiper.css') export default { components: { swiper, swiperSlide }, methods: { backgroundImg: function () { return { backgroundImage: 'url(@/assets/logo.png)' } } }, data () { return { swiperOption: { pagination: '.swiper-pagination', paginationClickable: true } } } } </script>
Обсуждают сегодня