forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinearNavigation.vue
More file actions
73 lines (65 loc) · 2.11 KB
/
LinearNavigation.vue
File metadata and controls
73 lines (65 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<div class="q-pa-md">
<q-btn label="Reset" push color="white" text-color="primary" @click="step = 1" class="q-mb-md" />
<q-stepper
v-model="step"
header-nav
ref="stepper"
color="primary"
animated
>
<q-step
:name="1"
title="Select campaign settings"
icon="settings"
:done="step > 1"
:header-nav="step > 1"
>
For each ad campaign that you create, you can control how much you're willing to
spend on clicks and conversions, which networks and geographical locations you want
your ads to show on, and more.
<q-stepper-navigation>
<q-btn @click="() => { done1 = true; step = 2 }" color="primary" label="Continue" />
</q-stepper-navigation>
</q-step>
<q-step
:name="2"
title="Create an ad group"
caption="Optional"
icon="create_new_folder"
:done="step > 2"
:header-nav="step > 2"
>
An ad group contains one or more ads which target a shared set of keywords.
<q-stepper-navigation>
<q-btn @click="() => { done2 = true; step = 3 }" color="primary" label="Continue" />
<q-btn flat @click="step = 1" color="primary" label="Back" class="q-ml-sm" />
</q-stepper-navigation>
</q-step>
<q-step
:name="3"
title="Create an ad"
icon="add_comment"
:header-nav="step > 3"
>
Try out different ad text to see what brings in the most customers, and learn how to
enhance your ads using features like ad extensions. If you run into any problems with
your ads, find out how to tell if they're running and how to resolve approval issues.
<q-stepper-navigation>
<q-btn color="primary" @click="done3 = true" label="Finish" />
<q-btn flat @click="step = 2" color="primary" label="Back" class="q-ml-sm" />
</q-stepper-navigation>
</q-step>
</q-stepper>
</div>
</template>
<script>
import { ref } from 'vue'
export default {
setup () {
return {
step: ref(1)
}
}
}
</script>