Adobe - https://www.behance.net/
Nintendo - https://my.nintendo.com/
GitLab - https://about.gitlab.com/blog/2016/10/20/why-we-chose-vue/
Grammarly
9GAG
| <script> | |
| import { ref } from 'vue' | |
| import { watchDebounced } from '@vueuse/core' | |
| export default { | |
| setup(){ | |
| const input = ref('') | |
| const updated = ref(0) | |
| watchDebounced(input, () => { | |
| updated.value += 1 |
| export const sendNotification = (text) => { | |
| //https://developer.mozilla.org/en-US/docs/Web/API/Notification/Notification | |
| let promise = Notification.requestPermission(); | |
| // wait for permission | |
| promise.then(data => { | |
| const eventName = 'new message' | |
| var options = { | |
| body: text, |
| <template> | |
| <img alt="Vue logo" src="./assets/logo.png"> | |
| <!-- <HelloWorld msg="Welcome to Your Vue.js App"/> --> | |
| <!-- <Demo/> --> | |
| {{rea1}}<br> | |
| {{rea2}}<br> | |
| {{rea3}}<br> | |
| {{rea4}}<br> | |
| <br> |
Adobe - https://www.behance.net/
Nintendo - https://my.nintendo.com/
GitLab - https://about.gitlab.com/blog/2016/10/20/why-we-chose-vue/
Grammarly
9GAG
| var express = require('express'), | |
| //import express from 'express' | |
| app = express(); | |
| const port = process.env.PORT || 9999; | |
| console.log(process.env.PORT) | |
| //app.set('port', 8080); | |
| // | |
| app.use(express.static(__dirname)); |
| <header class="header" id="header"> | |
| <a href="#"> | |
| <img src="../assets/img/vueschool-logo.svg"> | |
| </a> | |
| <div class="btn-hamburger"> | |
| <!-- use .btn-humburger-active to open the menu --> | |
| <div class="top bar"></div> | |
| <div class="middle bar"></div> | |
| <div class="bottom bar"></div> |
| <div class="col-large push-top"> | |
| <h1></h1> | |
| <div class="post-list"> | |
| <div class="post"> | |
| <div class="user-info"> | |
| <a href="#" class="user-name"></a> | |
| <a href="#"> | |
| <img class="avatar-large" src="" alt=""> |
| setup(props) { | |
| const store = useStore() | |
| const user = computed(() => { | |
| return store.getters.authUser | |
| }) | |
| const posts = computed(() => { | |
| return store.getters.posts |
| Apollo Client Developer Tools <----- Apollo | |
| Cookie Editor | |
| JSON Formatter | |
| Redux DevTools <----- react | |
| OctoLinker <------ fast github navigation | |
| Dimensions - check css and apply images for pp | |
| Vue.js devtools | |
| WebSocket King Client | |
| Postman Interceptor | |
| Sight - another The Syntax Highlighter |