Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ShelfNote
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Дмитрий Малюгин
ShelfNote
Compare revisions
87461b8651103525d06980b98a641a2c5603c8ad to 1d1ae4655293316385c1ce8f9058dea1d181d993
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
d.malygin/shelfNote
Select target project
No results found
1d1ae4655293316385c1ce8f9058dea1d181d993
Select Git revision
Swap
Target
d.malygin/shelfNote
Select target project
d.malygin/shelfNote
1 result
87461b8651103525d06980b98a641a2c5603c8ad
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/stores/interface.ts
+17
-0
17 additions, 0 deletions
src/stores/interface.ts
tailwind.config.js
+8
-0
8 additions, 0 deletions
tailwind.config.js
vite.config.ts
+8
-1
8 additions, 1 deletion
vite.config.ts
yarn.lock
+253
-140
253 additions, 140 deletions
yarn.lock
with
286 additions
and
141 deletions
src/stores/interface.ts
0 → 100644
View file @
1d1ae465
import
{
defineStore
}
from
'
pinia
'
;
export
const
useInterfaceStore
=
defineStore
(
'
interfaceStore
'
,
()
=>
{
const
homeBackgroundUrl
=
ref
<
string
>
(
'
https://wallpapers.com/images/featured/minimalist-7xpryajznty61ra3.jpg
'
);
onMounted
(()
=>
{
homeBackgroundUrl
.
value
=
localStorage
.
getItem
(
'
homeBackgroundUrl
'
)
||
'
https://wallpapers.com/images/featured/minimalist-7xpryajznty61ra3.jpg
'
;
});
function
changeHomeBackgroundUrl
(
newUrl
:
string
)
{
homeBackgroundUrl
.
value
=
newUrl
;
}
return
{
homeBackgroundUrl
,
changeHomeBackgroundUrl
};
});
This diff is collapsed.
Click to expand it.
tailwind.config.js
0 → 100644
View file @
1d1ae465
/** @type {import('tailwindcss').Config} */
export
default
{
content
:
[
'
./src/**/*.{html,js,vue}
'
],
theme
:
{
extend
:
{}
},
plugins
:
[]
};
This diff is collapsed.
Click to expand it.
vite.config.ts
View file @
1d1ae465
...
...
@@ -3,11 +3,18 @@ import { fileURLToPath, URL } from 'node:url';
import
{
defineConfig
}
from
'
vite
'
;
import
vue
from
'
@vitejs/plugin-vue
'
;
import
AutoImport
from
'
unplugin-auto-import/vite
'
;
import
Components
from
'
unplugin-vue-components/vite
'
;
import
{
PrimeVueResolver
}
from
'
@primevue/auto-import-resolver
'
;
// https://vitejs.dev/config/
export
default
defineConfig
({
plugins
:
[
vue
(),
vue
({
template
:
{}
}),
Components
({
resolvers
:
[
PrimeVueResolver
()]
}),
AutoImport
({
include
:
[
/
\.[
tj
]
sx
?
$/
,
// .ts, .tsx, .js, .jsx
...
...
This diff is collapsed.
Click to expand it.
yarn.lock
View file @
1d1ae465
This diff is collapsed.
Click to expand it.
Prev
1
2
Next