Skip to content

Instantly share code, notes, and snippets.

@cheesytim
Created April 20, 2021 22:22
Show Gist options
  • Save cheesytim/5fb1771859e2a714bab6bfff8530ec92 to your computer and use it in GitHub Desktop.
Save cheesytim/5fb1771859e2a714bab6bfff8530ec92 to your computer and use it in GitHub Desktop.
Qui demo
<!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