123456789101112131415161718192021222324252627282930313233343536373839 |
- const CreateMsgRouter = {
- template: `
- <div class="card om-card">
- <h5>Neue Nachricht erstellen</h5>
- <form class="new-msg-form" action="#" methord="GET">
- <div class="form-group bmd-form-group">
- <label class="bmd-label-floating">Betreff</label>
- <input type="text" class="form-control" id="subject">
- </div>
- <div class="form-group bmd-form-group">
- <label class="bmd-label-floating">Tags</label>
- <input type="text" class="form-control" id="hashtags">
- </div>
- <div class="form-group">
- <label class="bmd-label-floating">Nachricht</label>
- <textarea class="form-control" id="message" rows="5"></textarea>
- </div>
- <div class="form-group">
- <div class="checkbox">
- <label>
- <input type="checkbox"> Zusätzlich als E-mail versenden
- </label>
- </div>
- </div>
- <button class="btn btn-default"><a @click="$router.go(-1)">ABBRECHEN </a></button>
- <button type="submit" class="btn btn-raised om-btn">SENDEN</button>
- </form>
- </div>
- `,
- data: function () {
- return {};
- },
- methods: {
- },
- mounted: function() {
- if ($(this).bootstrapMaterialDesign)
- $(this).bootstrapMaterialDesign();
- },
- };
|