Created
April 20, 2021 22:22
-
-
Save cheesytim/5fb1771859e2a714bab6bfff8530ec92 to your computer and use it in GitHub Desktop.
Qui demo
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- import CSS --> | |
<link | |
rel="stylesheet" | |
href="https://unpkg.com/@qvant/qui/dist/qui.css" | |
/> | |
</head> | |
<body> | |
<div id="app"> | |
<div style="width: 205px; margin: 20px auto; display: flex; flex-direction: column; justify-content: center"> | |
<q-button style="margin: 20px 0">Button</q-button> | |
<q-input v-model="value" placeholder="Welcome to Neumorphism!" clearable /> | |
</div> | |
</div> | |
</body> | |
<!-- import Vue before Qui --> | |
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
<!-- import JavaScript --> | |
<script src="https://unpkg.com/@qvant/qui/dist/qui.umd.min.js"></script> | |
<script> | |
new Vue({ | |
el: '#app', | |
data() { | |
return { | |
value: '' | |
} | |
} | |
}) | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment