2018-04-13 14:54:53 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2018-04-13 17:13:11 +00:00
|
|
|
<script src="vue.js"></script>
|
2018-04-13 18:55:09 +00:00
|
|
|
<link rel="stylesheet" href="style.css">
|
2018-04-13 14:54:53 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id='app'>
|
2018-04-14 02:54:45 +00:00
|
|
|
<button type="button" name="button" @click="show = !show">
|
|
|
|
Switch
|
|
|
|
</button>
|
2018-04-14 02:50:29 +00:00
|
|
|
|
|
|
|
<p v-if="show">You can see me</p>
|
|
|
|
<p v-else>Now you see me</p>
|
2018-04-14 02:53:02 +00:00
|
|
|
<template v-if="show">
|
|
|
|
<h1>Heading</h1>
|
|
|
|
<p>Inside a template</p>
|
|
|
|
</template>
|
2018-04-14 02:54:45 +00:00
|
|
|
<p v-show="show">Do you also see me?</p>
|
2018-04-13 14:54:53 +00:00
|
|
|
</div>
|
|
|
|
<script src="app.js" charset="utf-8"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|