-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new logic to show before and after pricing on product droplets
- Loading branch information
Showing
11 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Vue from 'vue'; | ||
|
||
const template = require('./template.html'); | ||
|
||
export default Vue.component('text-blob-droplet', { | ||
template, | ||
name: 'text-blob-droplet', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
<span class="drzBlobText-strike">Strike</span> Text. | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.drzBlobText-strike { | ||
margin-right: 5px; | ||
opacity: .6; | ||
text-decoration: line-through; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Vue from 'vue'; | ||
import TextBlob from '@/droplets/text-blob'; | ||
import TextBlobTpl from '@/droplets/text-blob/template.html'; | ||
import { cleanDropletTpl } from '@/mixins/cleanDropletTpl'; | ||
|
||
const template = require('./template.html'); | ||
|
||
export default Vue.component('text-blob-page', { | ||
template, | ||
name: 'text-blob-page', | ||
mixins: [cleanDropletTpl], | ||
components: { | ||
TextBlob, | ||
}, | ||
data() { | ||
return { | ||
dropletHtml: this.cleanDropletTpl(TextBlobTpl), | ||
}; | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div> | ||
<header class="picazzo-page-header">Text Blob</header> | ||
|
||
<header class="picazzo-sectionHeader">Demo</header> | ||
|
||
<div class="row"> | ||
<text-blob-droplet></text-blob-droplet> | ||
</div> | ||
|
||
<header class="picazzo-sectionHeader">HTML</header> | ||
|
||
<div class="row"> | ||
<pre v-highlightjs><code class="html">{{ dropletHtml }}</code></pre> | ||
</div> | ||
|
||
<div class="picazzo-docFooter"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters