A Pen by Teguh Badru Salam on CodePen.
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title>Vue.js CRUD application</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> |
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
<div id="app"> | |
<div class="buttons"> | |
<button | |
@click="removeSlide" | |
:disabled="slides <= 2" | |
>Remove Slide</button> | |
<button | |
@click="addSlide" | |
:disabled="slides >= 10" | |
>Add Slide</button> |
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
<div id="sync1" class="owl-carousel owl-theme"> | |
<div class="item"> | |
<h1>1</h1></div> | |
<div class="item"> | |
<h1>2</h1></div> | |
<div class="item"> | |
<h1>3</h1></div> | |
<div class="item"> | |
<h1>4</h1></div> | |
<div class="item"> |
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
<div id="sync1" class="owl-carousel owl-theme"> | |
<div class="item"> | |
<h1>1</h1></div> | |
<div class="item"> | |
<h1>2</h1></div> | |
<div class="item"> | |
<h1>3</h1></div> | |
<div class="item"> | |
<h1>4</h1></div> | |
<div class="item"> |
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
<div id="app"> | |
<div class="wrapper"> | |
<!-- Header --> | |
<header class="header"> | |
<div class="header__image"> | |
<svg id="svg-knuckles" viewBox="0 0 100 61" width="100px" height="100px"> | |
<path fill="currentColor" d="M14.461,59.2c0.825-2.102,3.405-2.551,5.278-3.441 | |
c1.841-0.876,4.195-1.754,5.507-3.213c4.019-4.468,1.548-13.749-3.441-14.684c-2.275-0.427-4.793,0.711-7.113,0.688 | |
C3.452,38.436-1.843,27.13,2.53,18.587c0.904-1.766,2.756-2.908,3.671-4.359c0.609-0.969,0.544-2.387,1.376-3.213 | |
c0.594-0.589,2.54-1.46,3.901-1.376c1.311,0.082,1.936,1.2,3.213,1.606c1.002,0.319,2.718,0.327,4.129,0.688 |
A Pen by Teguh Badru Salam on CodePen.
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
<script src="https://unpkg.com/[email protected]/dist/vuex.js"></script> | |
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@quasar/extras/material-icons/material-icons.css"> | |
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/quasar/dist/quasar.min.css"> | |
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script> | |
<script src="https://cdn.jsdelivr.net/npm/vue-apexcharts"></script> | |
<script src="https://cdn.jsdelivr.net/npm/vue"></script> | |
<script src="https://cdn.jsdelivr.net/npm/quasar/dist/quasar.umd.min.js"></script> | |
<div id="q-app"> | |
A Pen by Teguh Badru Salam on CodePen.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder