/
home
/
techb158
/
immovalet.com
/
platform
/
themes
/
shopwise
/
assets
/
js
/
/home/techb158/immovalet.com/platform/themes/shopwise/assets/js
mkdir
upload
Name
Size
Mode
Actions
components/
-
0755
rm
app.js
3643
0644
edit
dl
rm
backend.js
29431
0644
edit
dl
rm
icons-field.js
56948
0644
edit
dl
rm
scripts.js
29062
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/themes/shopwise/assets/js/app.js
(3643B)
/** * First we will load all of this project's JavaScript dependencies which * includes Vue and other libraries. It is a great starting point when * building robust, powerful web applications using Vue and Laravel. */ import ProductCollectionsComponent from './components/ProductCollectionsComponent'; import FeaturedProductCategoriesComponent from './components/FeaturedProductCategoriesComponent'; import TrendingProductsComponent from './components/TrendingProductsComponent'; import FeaturedBrandsComponent from './components/FeaturedBrandsComponent'; import FeaturedProductsComponent from './components/FeaturedProductsComponent'; import TopRatedProductsComponent from './components/TopRatedProductsComponent'; import OnSaleProductsComponent from './components/OnSaleProductsComponent'; import FeaturedNewsComponent from './components/FeaturedNewsComponent'; import TestimonialsComponent from './components/TestimonialsComponent'; import ProductReviewsComponent from './components/ProductReviewsComponent'; import FlashSaleProductsComponent from './components/FlashSaleProductsComponent'; import Vue from 'vue'; window.axios = require('axios'); window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; /** * Next, we will create a fresh Vue application instance and attach it to * the page. Then, you may begin adding components to this application * or customize the JavaScript scaffolding to fit your unique needs. */ Vue.component('product-collections-component', ProductCollectionsComponent); Vue.component('featured-product-categories-component', FeaturedProductCategoriesComponent); Vue.component('trending-products-component', TrendingProductsComponent); Vue.component('featured-brands-component', FeaturedBrandsComponent); Vue.component('featured-products-component', FeaturedProductsComponent); Vue.component('top-rated-products-component', TopRatedProductsComponent); Vue.component('on-sale-products-component', OnSaleProductsComponent); Vue.component('featured-news-component', FeaturedNewsComponent); Vue.component('testimonials-component', TestimonialsComponent); Vue.component('product-reviews-component', ProductReviewsComponent); Vue.component('flash-sale-products-component', FlashSaleProductsComponent); /** * This let us access the `__` method for localization in VueJS templates * ({{ __('key') }}) */ Vue.prototype.__ = key => { window.trans = window.trans || {}; return window.trans[key] !== 'undefined' && window.trans[key] ? window.trans[key] : key; }; Vue.directive('carousel', { inserted: function (el) { $(el).owlCarousel({ rtl: $('body').prop('dir') === 'rtl', dots : $(el).data('dots'), loop : $(el).data('loop'), items: $(el).data('items'), margin: $(el).data('margin'), mouseDrag: $(el).data('mouse-drag'), touchDrag: $(el).data('touch-drag'), autoHeight: $(el).data('autoheight'), center: $(el).data('center'), nav: $(el).data('nav'), rewind: $(el).data('rewind'), navText: ['<i class="ion-ios-arrow-left"></i>', '<i class="ion-ios-arrow-right"></i>'], autoplay : $(el).data('autoplay'), animateIn : $(el).data('animate-in'), animateOut: $(el).data('animate-out'), autoplayTimeout : $(el).data('autoplay-timeout'), smartSpeed: $(el).data('smart-speed'), responsive: $(el).data('responsive') }) }, }); new Vue({ el: '#app', }); if ($('#list-reviews').length) { new Vue({ el: '#list-reviews', }); }
Save
cmd:
run