Compare commits
No commits in common. "54bbaf191859560038a4994dd8dc47ad31a295c3" and "1d50c81dc7920a733c7b5ac174721da710128c88" have entirely different histories.
54bbaf1918
...
1d50c81dc7
@ -44,5 +44,5 @@
|
|||||||
/*"font_size": 9,*/
|
/*"font_size": 9,*/
|
||||||
/*"font_size": 9,*/
|
/*"font_size": 9,*/
|
||||||
/*"font_size": 12,*/
|
/*"font_size": 12,*/
|
||||||
/*"font_size": 11,*/
|
"font_size": 10,
|
||||||
}
|
}
|
||||||
|
@ -37,9 +37,9 @@
|
|||||||
<link href="#" rel="alternate" hreflang="de">
|
<link href="#" rel="alternate" hreflang="de">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link href="{{ url('/favicon.ico') }}" rel="icon" sizes="16x16" type="image/icon">
|
<link href="/favicon.ico" rel="icon" sizes="16x16" type="image/icon">
|
||||||
<link href="{{ url('/favicon.svg') }}" rel="icon" type="image/svg+xml">
|
<link href="/favicon.svg" rel="icon" type="image/svg+xml">
|
||||||
<link href="{{ url('/favicon.png') }}" rel="icon" sizes="192x192">
|
<link href="/favicon.png" rel="icon" sizes="192x192">
|
||||||
|
|
||||||
<!-- Font preloads (should be done for each font file) -->
|
<!-- Font preloads (should be done for each font file) -->
|
||||||
<link href="{{ asset('fonts/fontfam/font.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
<link href="{{ asset('fonts/fontfam/font.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
||||||
@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class="font-sans antialiased">
|
<body class="font-sans antialiased">
|
||||||
<div id="app" class="min-h-screen bg-slate-50">
|
<div id="app" class="min-h-screen bg-gray-100">
|
||||||
@yield('body')
|
@yield('body')
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -39,36 +39,39 @@
|
|||||||
<link href="https://example.com/2003/05/" title="May 2003" rel="archives">
|
<link href="https://example.com/2003/05/" title="May 2003" rel="archives">
|
||||||
|
|
||||||
<!-- Android web manifest file -->
|
<!-- Android web manifest file -->
|
||||||
<link href="https://example.com/.webmanifest" rel="manifest">
|
<link href="/.webmanifest" rel="manifest">
|
||||||
|
|
||||||
<!-- Files listing who was involved in this site and copyrights -->
|
<!-- Files listing who was involved in this site and copyrights -->
|
||||||
<link href="https://example.com/humans.txt" rel="author">
|
<link href="https://example.com/humans.txt" rel="author">
|
||||||
<link href="https://example.com/copyright.html" rel="copyright">
|
<link href="https://example.com/copyright.html" rel="copyright">
|
||||||
|
|
||||||
<!-- Feeds -->
|
<!-- Feeds -->
|
||||||
<link href="https://example.com/rss.xml" type="application/rss+xml" title="RSS" rel="alternate">
|
<link href="https://feeds.feedburner.com/example" type="application/rss+xml" title="RSS" rel="alternate">
|
||||||
<link href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3" rel="alternate">
|
<link href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3" rel="alternate">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link href="https://example.com/favicon.ico" rel="icon" sizes="16x16" type="image/icon">
|
<link href="/favicon.ico" rel="icon" sizes="16x16" type="image/icon">
|
||||||
<link href="https://example.com/favicon.svg" rel="icon" type="image/svg+xml">
|
<link href="/favicon.svg" rel="icon" type="image/svg+xml">
|
||||||
<link href="https://example.com/favicon.png" rel="icon" sizes="192x192">
|
<link href="/favicon.png" rel="icon" sizes="192x192">
|
||||||
|
|
||||||
<!-- Font preloads (should be done for each font file) -->
|
<!-- Font preloads (should be done for each font file) -->
|
||||||
<link href="https://example.com/fonts/fontfam/font.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
<link href="https://example.com/fonts/fontfam/font.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link href="https://example.com/fonts/fontfam/font.woff" rel="preload" as="font" type="font/woff" crossorigin="anonymous">
|
||||||
|
|
||||||
<!-- CSS -->
|
<!-- CSS -->
|
||||||
<link href="https://example.com/css/app.css" rel="stylesheet" media="screen">
|
<link href="https://example.com/css/app.css" rel="stylesheet" media="screen">
|
||||||
<link href="https://example.com/css/print.css" rel="stylesheet" media="print">
|
<link href="https://example.com/css/print.css" rel="stylesheet" media="print">
|
||||||
|
|
||||||
<!-- JS that must be executed before the document is loaded -->
|
<!-- JS that must be executed before the document is loaded -->
|
||||||
|
<!-- -->
|
||||||
|
|
||||||
<script src="https://example.com/js/vendor/axios.min.js" defer></script>
|
<script src="https://example.com/js/vendor/axios.min.js" defer></script>
|
||||||
<script src="https://example.com/js/vendor/vue.min.js" defer></script>
|
<script src="https://example.com/js/vendor/vue.min.js" defer></script>
|
||||||
<script src="https://example.com/js/app.js" defer></script>
|
<script src="https://example.com/js/app.js" defer></script>
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</head>
|
</head>
|
||||||
<body class="font-sans antialiased">
|
<body class="font-sans antialiased">
|
||||||
<div id="app" class="min-h-screen bg-slate-50">
|
<div id="app" class="min-h-screen bg-gray-100">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
<content><![CDATA[
|
<content><![CDATA[
|
||||||
use App\Models\Traits\HasUidTrait;
|
use App\Models\Traits\HasUidTrait;
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
||||||
use Illuminate\Database\Eloquent\Prunable;
|
use Illuminate\Database\Eloquent\Prunable;
|
||||||
|
|
||||||
use HasUidTrait;
|
use HasUidTrait;
|
||||||
@ -85,19 +84,7 @@ protected function pruning(): void
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
//
|
||||||
* An accessor.
|
|
||||||
*
|
|
||||||
* @since 1.0.0
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Database\Eloquent\Casts\Attribute
|
|
||||||
*/
|
|
||||||
protected function attrName(): Attribute
|
|
||||||
{
|
|
||||||
return Attribute::make(
|
|
||||||
get: fn ($value, $attributes) => $attributes['foo'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { defineComponent, reactive, ref, computed, watch, onBeforeMount, onMounted, provide, inject } from "vue"
|
import { defineComponent, reactive, ref, computed, watch, onBeforeMount, onMounted } from 'vue'
|
||||||
import AppLayout from "@/Layouts/AppLayout.vue"
|
import AppLayout from '@/Layouts/AppLayout.vue'
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
emits: [],
|
emits: [],
|
||||||
@ -23,20 +23,17 @@ export default defineComponent({
|
|||||||
AppLayout,
|
AppLayout,
|
||||||
},
|
},
|
||||||
|
|
||||||
setup(props, { attrs, slots, emit, expose }) {
|
setup(props, {context, emit}) {
|
||||||
let aVariable = ref({})
|
let aVariable = reactive({})
|
||||||
|
|
||||||
// computed properties
|
|
||||||
let compVariable = computed(() => {
|
let compVariable = computed(() => {
|
||||||
//return "foo"
|
//return 'foo'
|
||||||
})
|
})
|
||||||
|
|
||||||
// watchers
|
watch(variable, (newValue, oldValue) => {
|
||||||
watch(aVariable, (newValue, oldValue) => {
|
|
||||||
//
|
//
|
||||||
})
|
})
|
||||||
|
|
||||||
// lifecycle hooks
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
//
|
//
|
||||||
})
|
})
|
||||||
@ -45,7 +42,6 @@ export default defineComponent({
|
|||||||
//
|
//
|
||||||
})
|
})
|
||||||
|
|
||||||
// methods
|
|
||||||
function myMethod() {
|
function myMethod() {
|
||||||
aVariable.value = null
|
aVariable.value = null
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user