#VueRouter
Awesome talk on Data loaders in #vue and #vuerouter with @esm.dev from #vueconftoronto2024
November 19, 2024 at 8:35 PM
Like, I’ve used VueRouter a bunch of times and created routing configs by hand, but I’ve also created my own implementation of Nuxt’s ‘pages’ feature, multiple times. I don’t even touch the routing in Nuxt, I just put files in directories, but I implicitly understand what it’s doing under the hood.
April 18, 2025 at 1:11 AM
VueRouterを使うと、特定のページ遷移をしたときだけ現れる隠しページを作れることが分かってしまい、いにしえのホームページ管理人の血が騒いでいる
February 27, 2024 at 1:05 PM
Also, VueRouter is delicious.
November 12, 2024 at 7:31 PM
#うひーメモ
2023-12-01 00:31:41
【VueRouter】URLを直接入力して画面遷移するのを防ぐ
#Program
#vuerouterurl
#vuerouter
#ステップ
【VueRouter】URLを直接入力して画面遷移するのを防ぐ
ユーザー認証画面gtパスワード変更画面のようにステップを踏んで画面遷移するようなフローがある場合パスワード変更画面に直接遷移されては困りますVueRouterで提供されている機能を利用する
qiita.com
November 30, 2023 at 3:31 PM
#うひーメモ
2023-10-24 19:04:14
Nuxt3でルーティングの設定と画面遷移を実装してみた
#Program
#nuxt
#vuerouter
#アプリケーション
Nuxt3でルーティングの設定と画面遷移を実装してみた
はじめにNuxtプロジェクトでルーティングの設定と画面遷移を実装してみましたVueRouterを使う場合と比べとても簡単ですNuxtを使用して画面遷移が必要なアプリケーションを作成
qiita.com
October 24, 2023 at 10:04 AM
VueJS with JSON
## 1. The problem I’m having: I am trying to get the VueRouter redirections to work eg:. `https:///cs2darchive.com/clients` Now I understand somehow I have to redirect each routes to index.html, but I am unsure how to do that with JSON, I only found Caddyfile examples, but those are a bit different huh. ## 2. Error messages and/or full log output: `HTTP 404 errors whenever I press F5 on any of the VueRouter pages.` ## 3. Caddy version: `v2.8.4` ## 4. How I installed and ran Caddy: `Using Caddy's repository and via apt install caddy` ### a. System environment: `Ubuntu 24.04 Server on Aarch64 Raspi5 via systemd` ### b. Command: `sudo caddy run --config global-caddy.json` ### d. My complete Caddy config: { "apps": { "http": { "servers": { "default": { "listen": [ ":80" ], "routes": [ { "handle": [ { "handler": "file_server", "root": "/path/to/default/root" } ] } ] }, "https": { "listen": [ ":443" ], "routes": [ { "handle": [ { "handler": "file_server", "root": "/home/marcell/PagerCast/" } ], "match": [ { "host": [ "pager.brohosting.eu" ] } ] }, { "handle": [ { "handler": "file_server", "root": "/home/marcell/PagerCast/" } ], "match": [ { "host": [ "asf.raspberry.local" ] } ] }, { "handle": [ { "handler": "file_server", "root": "/home/marcell/PagerCast/" } ], "match": [ { "host": [ "pagercast.com", "api.pagercast.com", "www.pagercast.com" ] } ] }, { "handle": [ { "handler": "file_server", "root": "/home/marcell/_domains/cs2darchive.com/dist" } ], "match": [ { "host": [ "cs2darchive.com", "www.cs2darchive.com" ], "not": [ { "path": [ "/api/*" ] } ] } ] }, { "handle": [ { "handler": "reverse_proxy", "upstreams": [ { "dial": "localhost:3415" } ] } ], "match": [ { "host": [ "cs2darchive.com", "www.cs2darchive.com" ], "path": [ "/api/*" ] } ] }, { "handle": [ { "handler": "file_server", "root": "/home/marcell/_domains/verify.gtavc.cc/dist" } ], "match": [ { "host": [ "verify.gtavc.cc" ], "not": [ { "path": [ "/api/v1/*" ] } ] } ] }, { "handle": [ { "handler": "reverse_proxy", "upstreams": [ { "dial": "localhost:3000" } ] } ], "match": [ { "host": [ "verify.gtavc.cc" ], "path": [ "/api/v1/*" ] } ] } ], "tls_connection_policies": [ { "certificate_selection": { "any_tag": [ "default" ] } } ] } } }, "tls": { "certificates": { "load_files": [ { "certificate": "/home/marcell/PagerCast/certs/cert.pem", "key": "/home/marcell/PagerCast/certs/privkey.pem", "tags": [ "default" ] } ] } } } }
caddy.community
August 7, 2024 at 5:14 PM