Skip to content
This repository was archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
mwieser committed Jun 20, 2018
1 parent 25c6437 commit 7809469
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Google Analytics A/B Testing</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>

<div id="app">
<select v-model="version">
<option value="A">A</option>
<option value="B">B</option>
</select>
<h1>Version {{ version }}</h1>
<button @click="sendConversionEvent">Buy</button>
<label>
Version
<select v-model="version">
<option value="A">A</option>
<option value="B">B</option>
</select>
</label>
<hr>
<h1>Version <span v-if="version === 'A'">🅰</span><span v-else>🅱</span></h1>
<p>This is the {{ version }} version of our landing page!</p>
<button @click="sendConversionEvent">Call to action</button>
</div>

<!-- Google Analytics -->
Expand Down

0 comments on commit 7809469

Please sign in to comment.