mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-05-02 04:26:19 +00:00
18 lines
332 B
Vue
18 lines
332 B
Vue
<template>
|
|
<div class="fixed-center text-center">
|
|
<p class="text-faded">
|
|
Sorry, nothing here...
|
|
<strong>(404)</strong>
|
|
</p>
|
|
<q-btn color="secondary" style="width: 200px" @click="$router.push('/')">
|
|
Go back
|
|
</q-btn>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "NotFound",
|
|
};
|
|
</script>
|