A Pen by Demi Kozo4 on CodePen.
Created
August 13, 2019 07:46
-
-
Save d1y/f8758ea0edd1209ca2c9b7a21348bb31 to your computer and use it in GitHub Desktop.
NSFW
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"> | |
| <h2>车牌号: <strong>{{ plate }}</strong></h2> | |
| <video :src="url" controls></video> | |
| </div> |
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
| let vm = new Vue({ | |
| el: '#app', | |
| data: { | |
| plate: 'gachi1151', | |
| url: 'https://storage.live.com/items/C6C88C8D7CB383C5!617?.&authkey=!AImc9gDk6rIZgao&ithint=.mp4' | |
| } | |
| }) |
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
| <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js"></script> |
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
| strong{ | |
| color: red; | |
| text-transform: uppercase; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment