This file contains hidden or 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
| /* CHAT STYLES */ | |
| * { | |
| font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, | |
| Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, | |
| Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; | |
| letter-spacing: 0.5px; | |
| } | |
| .ce-chat-list { | |
| background-color: rgb(240, 240, 240) !important; |
This file contains hidden or 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
| <template> | |
| <p>{{ greeting }} World!</p> | |
| </template> | |
| <script> | |
| export default { | |
| data() { | |
| return { | |
| greeting: 'Hello' | |
| } |
This file contains hidden or 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
| { | |
| "scripts": [], | |
| "styles": [] | |
| } |
This file contains hidden or 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
| { | |
| "scripts": [], | |
| "styles": [] | |
| } |
This file contains hidden or 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
| <div class="nav-bar"></div> | |
| <div id="app"> | |
| <div class="cart"> | |
| <p>Cart({{ cart.length }})</p> | |
| </div> | |
| <product :premium="premium" @add-to-cart="updateCart" @remove-from-cart="removeItem"></product> | |
| </div> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> |
This file contains hidden or 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
| /** | |
| * The array includes() method detect whether the specified element exist in array | |
| * or not. if exists then return true else false. | |
| */ | |
| const array = [ "JS", "Startup" ]; | |
| array.includes("Startup"); | |
| // true |