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
<template> | |
<svg> | |
<use :xlink:href="path"></use> | |
</svg> | |
</template> | |
<script> | |
export default { | |
props: { | |
name: String, |
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
<template> | |
<SmoothReflow> | |
<div>My height will change at some point, and the SmoothReflow component | |
will automatically make sure that it animates</div> | |
</SmoothReflow> | |
</template> |
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
<template> | |
<div class="widget"> | |
<h2>Find My {{ title }}</h2> | |
<div> | |
<div v-if="initialState"> | |
<p class="description">{{ description }}</p> | |
<div class="input"> | |
<!-- Main input --> | |
<input |
OlderNewer