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 href="index.html#/home">ABBRECHEN </a></button>
		<button type="submit" class="btn btn-raised om-btn">SENDEN</button>
	</form>
</div>
`,
    data: function () {
		return {};
    },
    methods: {
    },
};