Skip to content

Instantly share code, notes, and snippets.

@manutheblacker
Created June 5, 2020 05:13
Show Gist options
  • Save manutheblacker/221f4023594f0c99e752d4d400b8ae52 to your computer and use it in GitHub Desktop.
Save manutheblacker/221f4023594f0c99e752d4d400b8ae52 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/larelopedo
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[add your bin description]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="app">
<a v-bind:href="link"> {{message}}</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script id="jsbin-javascript">
var card= new Vue({el:"#app",data:{
message : "Salut les gens",
link : "https://homescriptone.com"
}})
</script>
<script id="jsbin-source-javascript" type="text/javascript">var card= new Vue({el:"#app",data:{
message : "Salut les gens",
link : "https://homescriptone.com"
}})</script></body>
</html>
var card= new Vue({el:"#app",data:{
message : "Salut les gens",
link : "https://homescriptone.com"
}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment