Add minified vuejs to the repo to reduce dependencies
This commit is contained in:
parent
7e3e282be6
commit
b8fa916f30
2 changed files with 10 additions and 4 deletions
|
@ -6,7 +6,6 @@
|
||||||
<title>Mobileconfig Generator</title>
|
<title>Mobileconfig Generator</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -33,15 +32,15 @@
|
||||||
<key>PayloadContent</key>
|
<key>PayloadContent</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
<key>EmailAccountType</key>
|
<key><strong>EmailAccountType</strong></key>
|
||||||
<string><select v-model="payload.EmailAccountType">
|
<string><select v-model="payload.EmailAccountType">
|
||||||
<option value="" disabled>Select...</option>
|
<option value="" disabled>Select...</option>
|
||||||
<option>EmailTypeIMAP</option>
|
<option>EmailTypeIMAP</option>
|
||||||
<option>EmailTypePOP</option>
|
<option>EmailTypePOP</option>
|
||||||
</select></string>
|
</select></string>
|
||||||
<key>EmailAddress</key>
|
<key><strong>EmailAddress</strong></key>
|
||||||
<string><input type="email" v-model="payload.EmailAddress" v-bind:placeholder="payloadPlaceholders.EmailAddress"></string>
|
<string><input type="email" v-model="payload.EmailAddress" v-bind:placeholder="payloadPlaceholders.EmailAddress"></string>
|
||||||
<key>EmailAccountDescription</key>
|
<key><strong>EmailAccountDescription</strong></key>
|
||||||
<string><input type="text" v-model="payload.EmailAccountDescription" v-bind:placeholder="payloadPlaceholders.EmailAccountDescription"></string>
|
<string><input type="text" v-model="payload.EmailAccountDescription" v-bind:placeholder="payloadPlaceholders.EmailAccountDescription"></string>
|
||||||
|
|
||||||
<!-- Incoming -->
|
<!-- Incoming -->
|
||||||
|
@ -123,6 +122,7 @@
|
||||||
<h1>3. Or copy/paste</h1>
|
<h1>3. Or copy/paste</h1>
|
||||||
<textarea rows="30" cols="80">{{ generatedProfile }}</textarea>
|
<textarea rows="30" cols="80">{{ generatedProfile }}</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
<script src="js/vue.min.js"></script>
|
||||||
<script src="js/main.js"></script>
|
<script src="js/main.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
6
js/vue.min.js
vendored
Normal file
6
js/vue.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue