forked from mandiant/gocrack-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntitlementManager.vue
More file actions
31 lines (27 loc) · 796 Bytes
/
EntitlementManager.vue
File metadata and controls
31 lines (27 loc) · 796 Bytes
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
<template>
<div class="modal fade entitlementModal" id="entitlementModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Entitlements</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Hi!</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>