Commit 40075ac1 authored by Дмитрий Малюгин's avatar Дмитрий Малюгин 🕓
Browse files

Merge branch 'feature/entityText' into 'main'

Entity of text

See merge request d.malygin/motion!4
parents 1d1ae465 780bfb61
Loading
Loading
Loading
Loading
+3 −13
Original line number Diff line number Diff line
# motion
# ShelfNote

This template should help get you started developing with Vue 3 in Vite.
Этот проект является попыткой создать аналог известного приложения Notion с возможностями, отсутствующими в вышеупомянутом приложении и желающим UI автора. Основные отличия:

## Recommended IDE Setup

[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).

## Type Support for `.vue` Imports in TS

TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.

## Customize configuration

See [Vite Configuration Reference](https://vitejs.dev/config/).
более гибкая настройка фона каждой страницы;

## Project Setup

+4 −4
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
    <link rel="icon" href="/favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link href="./src/output.css" rel="stylesheet">
    <title>Motion</title>
    <title>ShelfNote</title>
  </head>
  <body>
      <div id="app"></div>
+2 −2
Original line number Diff line number Diff line
{
  "name": "motion",
  "name": "ShelfNote",
  "version": "0.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "motion",
      "name": "ShelfNote",
      "version": "0.0.0",
      "dependencies": {
        "@primevue/themes": "^4.0.4",
+1 −1
Original line number Diff line number Diff line
{
  "name": "motion",
  "name": "shelf-note",
  "version": "0.0.0",
  "private": true,
  "type": "module",
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ const visible = ref<boolean>(false);

<template>
  <router-view />
  <div class="absolute top-0 left-0">
  <div class="fixed top-0 left-0">
    <Button
      @click.prevent="visible = !visible"
      label="Menu"
Loading