Skip to main content
2 件の回答
  1. 2023年10月10日 13:33

      Selector.html 

     

    <template>

        <div class="wrapper">

        <header class="header">Available Bikes for {name}</header>

        <section class="content">

            <div class="columns">

            <main class="main" >

                <c-list onproductselected={handleProductSelected}></c-list>

            </main>

            <aside class="sidebar-second">

                <c-detail product-id={selectedProductId}></c-detail>

            </aside>

            </div>

        </section>

        </div>

    </template>

     

    selector.css

     

    body {

      margin: 0;

    .wrapper{

      min-height: 100vh;

      background: #ccc;

      display: flex;

      flex-direction: column;

    }

    .header, .footer{

      height: 50px;

      background: rgb(255, 255, 255);

      color: rgb(46, 46, 46);

      font-size: x-large;

      padding: 10px;

    }

    .content {

      display: flex;

      flex: 1;

      background: #999;

      color: #000; 

    }

    .columns{

      display: flex;

      flex:1;

    }

    .main{

      flex: 1;

      order: 2;

      background: #eee;

    }

    .sidebar-first{

      width: 20%;

      background: #ccc;

      order: 1;

    }

    .sidebar-second{ 

      width: 30%;

      order: 3;

      background: #ddd;

    }

     

    selector.js-meta.xml

     

    <?xml version="1.0" encoding="UTF-8"?>

    <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">

        <apiVersion>48.0</apiVersion>

        <isExposed>true</isExposed>

        <targets>

            <target>lightning__AppPage</target>

            <target>lightning__RecordPage</target>

            <target>lightning__HomePage</target>

        </targets>

    </LightningComponentBundle>

0/9000