A Pen by Cloudinary on CodePen.
A Pen by yoichi kobayashi on CodePen.
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> | |
| <q-btn push dense round text-color="white" @click="refreshChat"> | |
| <q-icon name="far fa-comments" v-show="!(startchat)"></q-icon> | |
| <q-icon name="fas fa-times" v-show="(startchat)"></q-icon> | |
| <q-popover ref="popover" @show="startchat = true" @hide="startchat = false" keep-on-screen fit> | |
| <q-list> | |
| <q-item> | |
| <q-item-main>Songxy Community Chat</q-item-main> | |
| <q-item-side right> | |
| <q-btn size="md" push dense round no-shadow icon="fas fa-sync" @click.native="refreshChat"/> |
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
| <!DOCTYPE html> | |
| <html lang="en-us"> | |
| <head> | |
| </head> | |
| <body> | |
| <div id="fb-root"></div> | |
| <script async defer src="https://connect.facebook.net/en_US/sdk.js"></script> | |
| </body> | |
| </html> |
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> | |
| <div class="fb-comments" data-href="https://songxy.com/mastering" data-numposts="5" data-colorscheme="light" data-width="280px"></div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'FacebookComments', | |
| mounted(){ | |
| this.init() | |
| }, |
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
| const uint32 ticksPerSecond = 1000; | |
| class Timer | |
| { | |
| private: | |
| bool isClassInit; | |
| uint32 framesPerSecond; | |
| float32 hzPerSecondTicks; |
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
| .water | |
| - for (i = 0; i < 60; i++) | |
| .ball_wrapper | |
| .ball |
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
| type City { | |
| id: ID! | |
| name: String! | |
| country: String! | |
| locations: [Location] | |
| } | |
| type Location { | |
| id: ID! | |
| cityId: ID! |
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> | |
| <div class="tasks"> | |
| <h1>Task Manager</h1> | |
| <input v-model="taskname" placeholder="Task Name" class="input"> | |
| <button @click="createTask()" class="taskButton">Create Task</button> | |
| <ul> | |
| <li | |
| class="task" | |
| v-for="(task, index) in tasks" :key="index" | |
| > |
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> | |
| <div id="app"> | |
| <div v-if="!signedIn"> | |
| <amplify-authenticator></amplify-authenticator> | |
| </div> | |
| <div v-if="signedIn"> | |
| <amplify-sign-out class="signout" v-bind:signOutOptions="signOutOptions"></amplify-sign-out> | |
| <img alt="Vue logo" src="./assets/logo.png"> | |
| <HelloWorld msg="Welcome to Your Vue.js App"/> | |
| <!-- <button v-on:click="signOut">Sign Out</button> --> |
NewerOlder