PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / admin / modules / template-library / Components / SingleStepPreview.vue

SingleStepPreview.vue in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at admin/modules/template-library/Components/SingleStepPreview.vue

40 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <template>
2 <div class="wpfnl-step__single-template" >
3 <div class="template-preview-image">
4 <div class="template-action">
5 <a :href="step.link" target="_blank" class="btn-default step-btn"> preview </a>
6 </div>
7
8 <div class="step-image-wrapper" :style="{ backgroundImage: `url(${image})` }">
9 </div>
10 </div>
11
12 <div class="step-template-info">
13 <span class="title">{{step.title}}</span>
14 </div>
15 </div>
16 </template>
17 <script>
18 export default {
19 name: 'SingleStepPreview',
20 props: {
21 step: Object,
22 image: String,
23 previewLink: String,
24 isAddNewFunnelButtonDisabled: Boolean,
25 },
26 data: function () {
27 return {
28 showLoader : false
29 }
30 },
31 methods: {
32 importStep: function (e) {
33 e.preventDefault();
34 var that = this;
35 this.showLoader = true;
36 that.createStep( {'id' : this.step.id, 'type' : this.step.step_type, 'name' : this.step.step_type}, this.funnelID, that);
37 },
38 }
39 }
40 </script>