feat: add date for article
This commit is contained in:
@@ -36,12 +36,20 @@ const SIMULATION_THRESHOLD = 20
|
|||||||
const displaySimulationConclusion = computed(() => {
|
const displaySimulationConclusion = computed(() => {
|
||||||
return simulationStore.simulationsDone > SIMULATION_THRESHOLD
|
return simulationStore.simulationsDone > SIMULATION_THRESHOLD
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const createdAt = new Date('2025-01-08').toLocaleDateString(undefined, {
|
||||||
|
year: 'numeric',
|
||||||
|
month: 'long',
|
||||||
|
day: 'numeric'
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<article class="flow-article">
|
<article class="flow-article">
|
||||||
<h1>Pull System</h1>
|
<h1>Pull System</h1>
|
||||||
<!-- <h2>Ekiden (駅伝): long-distance running relay race</h2> -->
|
<h2 class="created-at numeric">
|
||||||
|
{{ createdAt }}
|
||||||
|
</h2>
|
||||||
<div class="flow-intro text">
|
<div class="flow-intro text">
|
||||||
<p>
|
<p>
|
||||||
In lean manufacturing, a key concept is <em>lead time</em>: the time it
|
In lean manufacturing, a key concept is <em>lead time</em>: the time it
|
||||||
@@ -299,6 +307,11 @@ const displaySimulationConclusion = computed(() => {
|
|||||||
max-width: 1080px;
|
max-width: 1080px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
||||||
|
.created-at {
|
||||||
|
font-size: 14pt;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
max-width: 650px;
|
max-width: 650px;
|
||||||
|
|||||||
Reference in New Issue
Block a user