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
<div id="app"> | |
<button @click="showDialog">Show Dialog</button> | |
<!-- transition block sets up to apply classes when the nested v-if changes state --> | |
<transition name="dialog"> | |
<div v-if="dialogShowing" class="dialog"> | |
<div class="dialog-header"> | |
<div class="dialog-title">A Dialog</div> | |
<button class="icon-button" @click="hideDialog"> | |
<svg style="width:24px;height:24px" viewBox="0 0 24 24"> |
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"initialCols": 120, | |
"initialRows": 30, |
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
$ -> | |
data = | |
name: "Bob's Car Sales" | |
identifier: 1 | |
selected: false | |
childrenOpen: true | |
children: [ | |
{ | |
name: "Bob's Car Parts" | |
identifier: 2 |